build script

This commit is contained in:
asuk 2023-05-02 13:49:23 +02:00
parent ca2a337916
commit d8137e7c97

19
buildAndCopy.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/zsh
PREVIOUS_DIR=$(pwd)
DIR=${0:a:h}
SOURCE="$DIR/packages/browser-bundles/dist"
DESTINATION="/Users/asuk/Documents/Variable Font Tool/image-type-theatre/node_modules/@theatre/browser-bundles/dist"
DESTINATION="jrkb@nature.fritz.box:/home/jrkb/openFrameworks/apps/celinesTypeGarden/msdf-theatre/bin/data/web/node_modules/@theatre/browser-bundles/dist"
cd $DIR
yarn build
rsync -raz --progress $SOURCE/ $DESTINATION/
ssh jrkb@nature.fritz.box cd /home/jrkb/openFrameworks/apps/celinesTypeGarden/msdf-theatre && git pull
ssh jrkb@nature.fritz.box /home/jrkb/runTheatre.sh
# rm -rf "$DESTINATION"
# cp -r "$SOURCE" "$DESTINATION"
cd $PREVIOUS_DIR