cleanup and corrections

pull/273/head
Frostebite 2021-08-01 19:02:43 +01:00
parent 7dfe3a2c24
commit 62721a4ead
4 changed files with 10 additions and 2 deletions

4
dist/index.js vendored
View File

@ -2180,13 +2180,17 @@ class RemoteBuilder {
echo ' '
echo 'Initializing source repository for cloning with caching of LFS files'
${initializeSourceRepoForCaching}
echo ' '
echo 'Large File before LFS caching and pull'
ls -alh "${testLFSFile}"
echo ' '
echo 'Source repository initialized'
echo ' '
echo 'Checking cache for the Unity project Library and git LFS files'
${handleCaching}
echo 'Caching complete'
echo ' '
echo 'Large File after LFS caching and pull'
ls -alh "${testLFSFile}"
echo ' '
#

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,7 @@ latestLibraryCacheFile=$(ls -t "$libraryCacheFolder" | grep .zip$ | head -1)
if [ ! -z "$latestLibraryCacheFile" ]; then
echo "Library cache exists from build $latestLibraryCacheFile from $branchName"
echo 'Creating empty Library folder for cache'
mkdir "$libraryFolderFull"
mkdir -p "$libraryFolderFull"
unzip -q "$libraryCacheFolder/$latestLibraryCacheFile" -d "$libraryFolderFull"
fi

View File

@ -135,13 +135,17 @@ class RemoteBuilder {
echo ' '
echo 'Initializing source repository for cloning with caching of LFS files'
${initializeSourceRepoForCaching}
echo ' '
echo 'Large File before LFS caching and pull'
ls -alh "${testLFSFile}"
echo ' '
echo 'Source repository initialized'
echo ' '
echo 'Checking cache for the Unity project Library and git LFS files'
${handleCaching}
echo 'Caching complete'
echo ' '
echo 'Large File after LFS caching and pull'
ls -alh "${testLFSFile}"
echo ' '
#