unzip Library cache to correct project path
parent
cb8687d2af
commit
fcab2e5dcb
|
|
@ -259,7 +259,7 @@ class AWS {
|
||||||
cd ../../
|
cd ../../
|
||||||
if [ ! -z $latest ]; then
|
if [ ! -z $latest ]; then
|
||||||
echo "Library cache exists from build $latest from $branchName"
|
echo "Library cache exists from build $latest from $branchName"
|
||||||
unzip -q "cache/${branchName}/$latest" ./${buildUid}/repo/Library/.
|
unzip -q $latest -d ./${buildUid}/repo/${buildParameters.projectPath}/Library/.
|
||||||
else
|
else
|
||||||
echo "Cache does not exist"
|
echo "Cache does not exist"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -47,7 +47,7 @@ class AWS {
|
||||||
cd ../../
|
cd ../../
|
||||||
if [ ! -z $latest ]; then
|
if [ ! -z $latest ]; then
|
||||||
echo "Library cache exists from build $latest from $branchName"
|
echo "Library cache exists from build $latest from $branchName"
|
||||||
unzip -q "cache/${branchName}/$latest" ./${buildUid}/repo/Library/.
|
unzip -q $latest -d ./${buildUid}/repo/${buildParameters.projectPath}/Library/.
|
||||||
else
|
else
|
||||||
echo "Cache does not exist"
|
echo "Cache does not exist"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue