aboutsummaryrefslogtreecommitdiffstats
path: root/build-gui.sh
blob: 004d8c06a14ed23e13904ad61845509ce46310b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

for d in onetrick_*; do
    echo "----------------------------------------------"
    echo "Building $d"
    pushd "$d"
    unzip -u *.zip
    cargo xtask bundle "$d" --release
    popd
done