Readable logs

pull/273/head
Frostebite 2021-07-27 22:54:12 +01:00
parent f8363d834e
commit f051a4d34a
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ cd $repoPathFull
echo ' '
echo "Cloning the repository being built:"
git clone --filter=blob:none --no-checkout $cloneUrl $repoPathFull
git --work-tree=$repoPathFull -q checkout $githubSha
git checkout $githubSha
echo "Checked out $githubSha"
echo ' '
@ -20,12 +20,12 @@ tree
echo ' '
echo 'List all LFS file hashes:'
git lfs ls-files -l | cut -d ' ' -f1 | sort
git lfs ls-files --all | cut -d ' ' -f1 | sort
echo ' '
echo 'Contents of .lfs-assets-id file:'
git lfs ls-files -l | cut -d ' ' -f1 | sort > .lfs-assets-id
git lfs ls-files --all | cut -d ' ' -f1 | sort > .lfs-assets-id
echo .lfs-assets-id
echo ' '