pull/289/head
Frostebite 2021-08-02 01:43:14 +01:00
parent ce1cfafdcd
commit e791e2301c
3 changed files with 11 additions and 11 deletions

10
dist/index.js vendored
View File

@ -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 ' '
# #
`, `,

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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 ' '
# #
`, `,