summaryrefslogtreecommitdiff
path: root/game_server/build.sh
blob: 1eb61a1bfcd363cf1753f19481347a7f1dfa8fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env sh

case $1 in
    ("")
        if rustup run stable cargo --color always build; then
            echo build success!
            RUST_LOG=debug target/debug/game-server
        else
            echo build failed!
        fi
        ;;
    -r)
        sh build.sh &> err && cat err | tac
        ;;
    -c)
        rustup run stable cargo clean
        ;;
    *)
        echo invalid argument
        ;;
esac