Skip to content

Commit

Permalink
Adds debug output to move command
Browse files Browse the repository at this point in the history
  • Loading branch information
XComp committed Nov 10, 2023
1 parent 4b01d12 commit 760bb6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/flink-ci-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
# mv doesn't work out-of-the-box with hidden files (i.e. file name starts with a dot).
# Using find is a workaround to achieve the same.
cd ${{ env.CONTAINER_WORKING_DIR }}
find . -mindepth 1 -maxdepth 1 -exec mv {} ${{ env.CHECKOUT_DIR }}/{} \;
find . -mindepth 1 -maxdepth 1 -exec sh -c "echo {}; mv {} ${{ env.CHECKOUT_DIR }}/{}" \;
- name: "Compile Flink"
working-directory: ${{ env.CHECKOUT_DIR }}
Expand Down

0 comments on commit 760bb6b

Please sign in to comment.