mirror of
https://github.com/QuasarApp/Hanoi-Towers.git
synced 2025-04-26 17:54:31 +00:00
18 lines
271 B
Bash
Executable File
18 lines
271 B
Bash
Executable File
#!/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
|
|
|
|
rm -rdf $TARGET_DIR/*
|
|
|
|
make -j$(nproc)
|
|
|
|
make deploy_depends
|
|
|
|
snapcraft clean
|
|
|
|
snapcraft
|