Better startup log messages

pull/273/head
Frostebite 2021-07-12 23:53:22 +01:00
parent 092e677ea0
commit e23a19aecb
4 changed files with 12 additions and 9 deletions

6
dist/index.js vendored
View File

@ -2120,15 +2120,15 @@ class RemoteBuilder {
${builderPathFull}/dist/remote-builder/setupCache.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull}
${builderPathFull}/dist/remote-builder/handleCaching.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull} ${purgeRemoteCache}
#
echo ''
echo ' '
#
echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull}
#
echo ''
echo ' '
#
echo 'Root build volume folder:'
ls /${buildVolumeFolder}
tree -L 1 /${buildVolumeFolder}
#
`,
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, [

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -1,9 +1,12 @@
#!/bin/sh
echo "Combining LFS hash files into one hash, this can be used to cache LFS files"
git lfs ls-files -l | cut -d' ' -f1 | sort > $1/lfsSum.txt
git lfs ls-files -l
git lfs ls-files -l | cut -d' ' -f1
git lfs ls-files -l | cut -d' ' -f1 | sort
git lfs ls-files -l | cut -d' ' -f1 | sort > $1/.lfs-assets-id
echo ' '
ls $1
echo 'combined file:'
cat $1/lfsSum.txt
cat $1/.lfs-assets-id
echo ' '

View File

@ -129,15 +129,15 @@ class RemoteBuilder {
${builderPathFull}/dist/remote-builder/setupCache.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull}
${builderPathFull}/dist/remote-builder/handleCaching.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull} ${purgeRemoteCache}
#
echo ''
echo ' '
#
echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull}
#
echo ''
echo ' '
#
echo 'Root build volume folder:'
ls /${buildVolumeFolder}
tree -L 1 /${buildVolumeFolder}
#
`,
],