md5sum assets id file
parent
3156d1f665
commit
2d30b5bcd1
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue