From 63ef41fd7fc9b66ba1e675892766c232aadad8ef Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Wed, 31 May 2023 12:10:09 +0100 Subject: [PATCH] fix: missing line --- pi-image/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pi-image/install.sh b/pi-image/install.sh index 49c2a29..cfc5dc9 100644 --- a/pi-image/install.sh +++ b/pi-image/install.sh @@ -28,6 +28,10 @@ curl -fsSL https://fnm.vercel.app/install | bash -s -- --install-dir /opt/fnm export PATH=/opt/fnm:$PATH eval "`fnm env --shell bash`" +# clone the repository +git clone https://github.com/bitfocus/companion-satellite.git -b $SATELLITE_BRANCH /usr/local/src/companion-satellite +cd /usr/local/src/companion-satellite + # configure git for future updates git config --global pull.rebase false