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