Skip to content

Commit 3333810

Browse files
committed
fix: remove 'readonly' flag for some vars
Some `readonly` variables are already defined in anothe buildpack, making the buildpack and tests fail.
1 parent 0668037 commit 3333810

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/compile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ if [[ -n "${BUILDPACK_DEBUG}" ]]; then
77
set -x
88
fi
99

10-
readonly build_dir="${1}"
11-
readonly cache_dir="${2}"
10+
build_dir="${1}"
11+
cache_dir="${2}"
1212
env_dir="${3}"
1313

1414
readonly java_version="${JAVA_VERSION:-1.8}"

0 commit comments

Comments
 (0)