From 701a2730e28809a0878de2f5f4e4a21abd58faf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Maih=C3=B6fer?= Date: Mon, 13 May 2024 15:55:06 +0200 Subject: [PATCH] do not unpack git objects, not needed anymore --- hook_standalone.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/hook_standalone.sh b/hook_standalone.sh index 0d06ef0..6d726aa 100755 --- a/hook_standalone.sh +++ b/hook_standalone.sh @@ -41,9 +41,6 @@ cd .. echo "BUILDING cables" cd cables git pull -# unpacking objects so we have commit messages... -for i in `ls .git/objects/pack/*.pack`; do mv -f $i .git/; done -for i in `ls .git/*.pack`; do cat $i | git unpack-objects -r; done $NPM_EXE install $NPM_EXE run build cd .. @@ -51,9 +48,6 @@ cd .. echo "BUILDING cables_ui" cd cables_ui git pull -# unpacking objects so we have commit messages... -for i in `ls .git/objects/pack/*.pack`; do mv -f $i .git/; done -for i in `ls .git/*.pack`; do cat $i | git unpack-objects -r; done $NPM_EXE install $NPM_EXE run build cd .. @@ -61,9 +55,6 @@ cd .. echo "BUILDING cables_electron" cd cables_electron git pull -# unpacking objects so we have commit messages... -for i in `ls .git/objects/pack/*.pack`; do mv -f $i .git/; done -for i in `ls .git/*.pack`; do cat $i | git unpack-objects -r; done $NPM_EXE install $NPM_EXE run build echo "PACKAGING cables_electron"