fix
parent
ce1cfafdcd
commit
e791e2301c
|
|
@ -2137,10 +2137,10 @@ class RemoteBuilder {
|
||||||
` apk update -q
|
` apk update -q
|
||||||
apk add unzip zip git-lfs jq tree -q
|
apk add unzip zip git-lfs jq tree -q
|
||||||
#
|
#
|
||||||
mkdir ${this.buildPathFull}
|
mkdir -p ${this.buildPathFull}
|
||||||
mkdir ${this.builderPathFull}
|
mkdir -p ${this.builderPathFull}
|
||||||
mkdir ${this.repoPathFull}
|
mkdir -p ${this.repoPathFull}
|
||||||
mkdir ${this.steamPathFull}
|
mkdir -p ${this.steamPathFull}
|
||||||
#
|
#
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Cloning utility repositories for remote builder'
|
echo 'Cloning utility repositories for remote builder'
|
||||||
|
|
@ -2172,7 +2172,7 @@ class RemoteBuilder {
|
||||||
#
|
#
|
||||||
echo 'buildVolumeReport.txt and buildVolumeReport.txt saved to repository workspace directory'
|
echo 'buildVolumeReport.txt and buildVolumeReport.txt saved to repository workspace directory'
|
||||||
tree -L 4 ${this.buildPathFull}
|
tree -L 4 ${this.buildPathFull}
|
||||||
ls -lh /${buildVolumeFolder} > ${this.repoPathFull}/preBuildVolumeReport.txt
|
ls -lh ${buildVolumeFolder}
|
||||||
echo ' '
|
echo ' '
|
||||||
#
|
#
|
||||||
`,
|
`,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -95,10 +95,10 @@ class RemoteBuilder {
|
||||||
` apk update -q
|
` apk update -q
|
||||||
apk add unzip zip git-lfs jq tree -q
|
apk add unzip zip git-lfs jq tree -q
|
||||||
#
|
#
|
||||||
mkdir ${this.buildPathFull}
|
mkdir -p ${this.buildPathFull}
|
||||||
mkdir ${this.builderPathFull}
|
mkdir -p ${this.builderPathFull}
|
||||||
mkdir ${this.repoPathFull}
|
mkdir -p ${this.repoPathFull}
|
||||||
mkdir ${this.steamPathFull}
|
mkdir -p ${this.steamPathFull}
|
||||||
#
|
#
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Cloning utility repositories for remote builder'
|
echo 'Cloning utility repositories for remote builder'
|
||||||
|
|
@ -130,7 +130,7 @@ class RemoteBuilder {
|
||||||
#
|
#
|
||||||
echo 'buildVolumeReport.txt and buildVolumeReport.txt saved to repository workspace directory'
|
echo 'buildVolumeReport.txt and buildVolumeReport.txt saved to repository workspace directory'
|
||||||
tree -L 4 ${this.buildPathFull}
|
tree -L 4 ${this.buildPathFull}
|
||||||
ls -lh /${buildVolumeFolder} > ${this.repoPathFull}/preBuildVolumeReport.txt
|
ls -lh ${buildVolumeFolder}
|
||||||
echo ' '
|
echo ' '
|
||||||
#
|
#
|
||||||
`,
|
`,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue