Skip to content

Commit

Permalink
add custom blocks option
Browse files Browse the repository at this point in the history
  • Loading branch information
TheShovel committed Aug 19, 2024
1 parent 9b4f3fc commit caf8486
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,15 @@ mv node_modules/PenguinMod-Vm node_modules/scratch-vm

#BLOCKS
echo "Adding Blocks"
read -p "Use modified Blocks version? (Y/N)" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
git clone https://github.com/TheShovel/Stable-PM-Blocks.git
mv Stable-PM-Blocks PenguinMod-Blocks
else
git clone https://github.com/PenguinMod/PenguinMod-Blocks.git
fi
cd PenguinMod-Blocks
git pull
npm install --force
Expand Down

0 comments on commit caf8486

Please sign in to comment.