Skip to content

Commit

Permalink
Update build-local.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
hipposen authored Mar 24, 2024
1 parent 3d20089 commit 85c8bcc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions build-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
apt update && apt install git -y

# we need to put `build` in the container filesystem as unsquashfs throws errors, if it has to work across filesystems
cd /heyalter
mkdir /tmp/build
sudo mkdir -p /heyalter
sudo cd /heyalter
sudo mkdir /tmp/build

if [ ! -L /heyalter/build ]
then
ln -s /tmp/build /heyalter/build
sudo ln -s /tmp/build /heyalter/build
fi

# call the build script
./preset.sh
./build.sh
sudo ./preset.sh
sudo ./build.sh

0 comments on commit 85c8bcc

Please sign in to comment.