Skip to content

Commit

Permalink
[FLINK-32834] Streamline CI_DIR detection
Browse files Browse the repository at this point in the history
Copied from the Flink connector release scripts
  • Loading branch information
zentol committed Aug 17, 2023
1 parent e638115 commit 003eae5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tools/ci/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,7 @@
# This file contains tooling for compiling Flink
#

HERE="`dirname \"$0\"`" # relative
HERE="`( cd \"$HERE\" && pwd )`" # absolutized and normalized
if [ -z "$HERE" ] ; then
exit 1 # fail
fi
CI_DIR="$HERE/../ci"
CI_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
MVN_CLEAN_COMPILE_OUT="/tmp/clean_compile.out"

# Deploy into this directory, to run license checks on all jars staged for deployment.
Expand Down

0 comments on commit 003eae5

Please sign in to comment.