diff options
Diffstat (limited to 'functions/cache.sh')
-rwxr-xr-x | functions/cache.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functions/cache.sh b/functions/cache.sh index 467a67491..313aa51ae 100755 --- a/functions/cache.sh +++ b/functions/cache.sh @@ -8,9 +8,9 @@ ## under certain conditions; see COPYING for details. -Restore_cache () +Restore_package_cache () { - DIRECTORY="${1}" + DIRECTORY="cache/packages.${1}" if [ "${LB_CACHE}" = "true" ] && [ "${LB_CACHE_PACKAGES}" = "true" ] then @@ -29,9 +29,9 @@ Restore_cache () fi } -Save_cache () +Save_package_cache () { - DIRECTORY="${1}" + DIRECTORY="cache/packages.${1}" if [ "${LB_CACHE}" = "true" ] && [ "${LB_CACHE_PACKAGES}" = "true" ] then |