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/setupCache.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull}
${builderPathFull}/dist/remote-builder/handleCaching.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull} ${purgeRemoteCache} ${builderPathFull}/dist/remote-builder/handleCaching.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull} ${purgeRemoteCache}
# #
echo '' echo ' '
# #
echo 'Tree for the folder of this specific build:' echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull} tree -L 3 ${buildPathFull}
# #
echo '' echo ' '
# #
echo 'Root build volume folder:' echo 'Root build volume folder:'
ls /${buildVolumeFolder} tree -L 1 /${buildVolumeFolder}
# #
`, `,
], `/${buildVolumeFolder}`, `/${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 #!/bin/sh
echo "Combining LFS hash files into one hash, this can be used to cache LFS files" 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 ' ' echo ' '
ls $1 ls $1
echo 'combined file:' echo 'combined file:'
cat $1/lfsSum.txt cat $1/.lfs-assets-id
echo ' ' echo ' '

View File

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