Skip to content

Commit

Permalink
Adds missing negation
Browse files Browse the repository at this point in the history
  • Loading branch information
XComp committed Dec 20, 2023
1 parent fa1832c commit 90e7123
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -45,7 +45,7 @@ rm -rf "$FLINK_ARTIFACT_DIR/target/site"
rm -rf "$FLINK_ARTIFACT_DIR/flink-runtime-web/web-dashboard/node"
rm -rf "$FLINK_ARTIFACT_DIR/flink-runtime-web/web-dashboard/node_modules"

if [ -z "${FLINK_ARTIFACT_FILENAME}" ]; then
if [ ! -z "${FLINK_ARTIFACT_FILENAME}" ]; then
echo "Archives artifacts into ${FLINK_ARTIFACT_DIR}/${FLINK_ARTIFACT_FILENAME}"
tar --create --gzip --exclude "${FLINK_ARTIFACT_DIR}" --file "${FLINK_ARTIFACT_DIR}" .
fi

0 comments on commit 90e7123

Please sign in to comment.