Skip to content

Commit

Permalink
[FLINK-33285](debug) Adds -f to symlink removal
Browse files Browse the repository at this point in the history
  • Loading branch information
XComp committed Nov 6, 2023
1 parent 514cf5a commit f380afc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/flink-ci-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,6 @@ jobs:
- name: "Collect build artifacts"
working-directory: ${{ env.CHECKOUT_DIR }}
run: |
pwd
echo ${{ env.CHECKOUT_DIR }}
find .
./tools/azure-pipelines/create_build_artifact.sh -f ${{ env.CHECKOUT_DIR }}/${{ env.FLINK_ARTIFACT_FILENAME }}
- name: "Upload artifacts to make them available in downstream jobs"
Expand Down
2 changes: 1 addition & 1 deletion tools/azure-pipelines/create_build_artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ find . -maxdepth 8 -type f -name '*.jar' -exec rm -rf {} \;
rm -rf "./.git"

# AZ Pipelines has a problem with links.
rm "./build-target"
rm -f "./build-target"

# Remove javadocs because they are not used in later stages
rm -rf "./target/site"
Expand Down

0 comments on commit f380afc

Please sign in to comment.