Hanoi-Towers/runSnap.sh

18 lines
271 B
Bash
Raw Normal View History

2019-04-07 14:01:51 +03:00
#!/bin/sh
BASE_DIR=$(dirname $0)
TARGET_DIR="$BASE_DIR/installer/packages/HanoiTowers/data"
echo "selected target dir $TARGET_DIR"
echo "cd to snapcraft dir $BASE_DIR"
cd $BASE_DIR
2019-04-07 14:26:22 +03:00
rm -rdf $TARGET_DIR/*
make -j$(nproc)
make deploy_depends
2019-04-07 14:01:51 +03:00
2019-04-07 14:26:22 +03:00
snapcraft clean
snapcraft