steam deploy fix
parent
cf2402e754
commit
a419e8058c
|
|
@ -1667,9 +1667,9 @@ class RemoteBuilder {
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
ls
|
ls
|
||||||
chmod -R +x /entrypoint.sh;
|
chmod -R +x entrypoint.sh;
|
||||||
chmod -R +x /steps;
|
chmod -R +x steps;
|
||||||
/entrypoint.sh;
|
entrypoint.sh;
|
||||||
`,
|
`,
|
||||||
], `/${efsDirectoryName}`, `/${efsDirectoryName}/${buildUid}/steam/action/`, [
|
], `/${efsDirectoryName}`, `/${efsDirectoryName}/${buildUid}/steam/action/`, [
|
||||||
{
|
{
|
||||||
|
|
@ -1895,7 +1895,8 @@ class RemoteBuilder {
|
||||||
echo 'Creating empty Library folder for cache'
|
echo 'Creating empty Library folder for cache'
|
||||||
mkdir $libDir
|
mkdir $libDir
|
||||||
unzip -q $latest -d $libDir
|
unzip -q $latest -d $libDir
|
||||||
rm -r $libDir
|
# purge cache
|
||||||
|
# rm -r $libDir
|
||||||
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
|
|
@ -52,9 +52,9 @@ class RemoteBuilder {
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
ls
|
ls
|
||||||
chmod -R +x /entrypoint.sh;
|
chmod -R +x entrypoint.sh;
|
||||||
chmod -R +x /steps;
|
chmod -R +x steps;
|
||||||
/entrypoint.sh;
|
entrypoint.sh;
|
||||||
`,
|
`,
|
||||||
],
|
],
|
||||||
`/${efsDirectoryName}`,
|
`/${efsDirectoryName}`,
|
||||||
|
|
@ -340,7 +340,8 @@ class RemoteBuilder {
|
||||||
echo 'Creating empty Library folder for cache'
|
echo 'Creating empty Library folder for cache'
|
||||||
mkdir $libDir
|
mkdir $libDir
|
||||||
unzip -q $latest -d $libDir
|
unzip -q $latest -d $libDir
|
||||||
rm -r $libDir
|
# purge cache
|
||||||
|
# rm -r $libDir
|
||||||
else
|
else
|
||||||
echo 'Cache does not exist'
|
echo 'Cache does not exist'
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue