mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-22 21:02:44 +03:00
16 lines
227 B
Bash
Executable file
16 lines
227 B
Bash
Executable file
#!/bin/bash
|
|
|
|
curr_dir=$(dirname "$0")
|
|
|
|
cd $(dirname $curr_dir)
|
|
|
|
cargo build --release
|
|
|
|
cd $curr_dir
|
|
|
|
rm -rf builds
|
|
mkdir builds
|
|
|
|
cp ../target/release/anime-game-launcher builds/anime-game-launcher
|
|
|
|
./appimage/build_appimage.sh
|