unzip cache fix
parent
4e4e9e0b11
commit
d49b88d4b4
|
|
@ -1887,7 +1887,9 @@ class RemoteBuilder {
|
|||
echo "Library cache exists from build $latest from ${branchName}"
|
||||
echo 'Creating empty Library folder for cache'
|
||||
mkdir "$libDir"
|
||||
unzip -q $latest
|
||||
latestFile=$(basename $latest suffix)
|
||||
mv $latest $libDir
|
||||
unzip -q "$libDir/$latestFile"
|
||||
else
|
||||
echo 'Cache does not exist'
|
||||
fi
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -325,7 +325,9 @@ class RemoteBuilder {
|
|||
echo "Library cache exists from build $latest from ${branchName}"
|
||||
echo 'Creating empty Library folder for cache'
|
||||
mkdir "$libDir"
|
||||
unzip -q $latest
|
||||
latestFile=$(basename $latest suffix)
|
||||
mv $latest $libDir
|
||||
unzip -q "$libDir/$latestFile"
|
||||
else
|
||||
echo 'Cache does not exist'
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in New Issue