We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a2a1f commit 1861e86Copy full SHA for 1861e86
bin/compile
@@ -43,7 +43,11 @@ detect_and_install_nodejs "${BUILD_DIR}"
43
# shim will not interfere.
44
mkdir -p "${BUILD_DIR}/.heroku/bin"
45
cp "${BP_DIR}/opt/rlwrap" "${BUILD_DIR}/.heroku/bin/rlwrap"
46
-chmod +x "${BUILD_DIR}/.heroku/bin/rlwrap"
+
47
+# To ensure the cache created by older Clojure buildpack versions doesn't stay around indefinitely, we explicitly
48
+# delete these old directories. This will speed up subsequent app builds since it will take less time to restore
49
+# the cache before each build.
50
+rm -rf "${CACHE_DIR}/clojure-bp-apt"
51
52
# Run clojure install script (clojure / clj may be needed from leiningen for newer cli tools)
53
CLOJURE_CLI_VERSION="${CLOJURE_CLI_VERSION:-1.10.0.411}"
0 commit comments