From f051a4d34a256a7fafa315bdd2245dbe6f95f8b0 Mon Sep 17 00:00:00 2001 From: Frostebite Date: Tue, 27 Jul 2021 22:54:12 +0100 Subject: [PATCH] Readable logs --- dist/remote-builder/cloneNoLFS.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/remote-builder/cloneNoLFS.sh b/dist/remote-builder/cloneNoLFS.sh index d566dbec..9e005a5e 100755 --- a/dist/remote-builder/cloneNoLFS.sh +++ b/dist/remote-builder/cloneNoLFS.sh @@ -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 ' '