19 lines
656 B
Bash
Executable file
19 lines
656 B
Bash
Executable file
#!/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
|