cleanup and corrections
parent
7dfe3a2c24
commit
62721a4ead
|
|
@ -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 ' '
|
||||
#
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 ' '
|
||||
#
|
||||
|
|
|
|||
Loading…
Reference in New Issue