Skip to content

Commit

Permalink
fix: do not overwrite cache env vars (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chumper authored Feb 12, 2022
1 parent 2cfebad commit 515f3b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/usr/local/buildpack/utils/constants.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export ROOT_UMASK=750
# defines the umask fo folders created by the user
export USER_UMASK=770
# defines the cache folder for downloaded tools, if empty no cache will be used
export BUILDPACK_CACHE_DIR=
export BUILDPACK_CACHE_DIR=${BUILDPACK_CACHE_DIR}
# defines the max amount of filled space (in percent from 0-100) that is allowed
# before the installation tries to free space by cleaning the cache folder
# If empty, then cache cleanup is disabled
export BUILDPACK_MAX_ALLOCATED_DISK=
export BUILDPACK_MAX_ALLOCATED_DISK=${BUILDPACK_MAX_ALLOCATED_DISK}
# defines the temp directory that will be used when the cache is not active
# it is used for all downloads and will be cleaned up after each install
export TEMP_DIR=/tmp

0 comments on commit 515f3b2

Please sign in to comment.