md5sum assets id file

pull/273/head
Frostebite 2021-07-27 23:23:02 +01:00
parent 3156d1f665
commit 2d30b5bcd1
1 changed files with 8 additions and 3 deletions

View File

@ -8,11 +8,16 @@ purgeRemoteBuilderCache=$4
# handle library cache # handle library cache
if [ ! -d $cacheFolderFull ]; then if [ ! -d $cacheFolderFull ]; then
mkdir $cacheFolderFull mkdir $cacheFolderFull
echo "creating new cache folder" echo "creating new cache folder $cacheFolderFull"
else
echo "cache folder already exists $cacheFolderFull"
fi fi
if [ ! -d $cacheFolderFull/$branchName ]; then
if [ ! -d "$cacheFolderFull/$branchName" ]; then
mkdir $cacheFolderFull/$branchName mkdir $cacheFolderFull/$branchName
echo "creating new cache branch folder for: ${branchName}" echo "creating new cache branch folder for: $cacheFolderFull/$branchName"
else
echo "cache branch folder already exists for: $cacheFolderFull/$branchName"
fi fi
echo "Library cache for branch: $branchName" echo "Library cache for branch: $branchName"