Compare commits
No commits in common. "06960b6f9c146fd795b91fa21fb6ab9bdf9753a9" and "0af09fcd96f259ccc8b6d8c3398d8812be07716f" have entirely different histories.
06960b6f9c
...
0af09fcd96
|
@ -6,5 +6,3 @@
|
|||
/sounds/*.wav
|
||||
/sounds.zip
|
||||
/lull.zip
|
||||
/dist/
|
||||
/package/
|
||||
|
|
19
build.sh
19
build.sh
|
@ -1,16 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
mkdir dist
|
||||
|
||||
cargo build --release
|
||||
cp target/release/lull .
|
||||
strip lull
|
||||
|
||||
mkdir dist/linux
|
||||
# zip (itch desktop)
|
||||
zip -r lull-linux.zip README.md LICENSE lull
|
||||
# tar.gz (downloadable)
|
||||
rm lull-linux.tar.gz
|
||||
tar -czvf lull-linux.tar.gz README.md LICENSE lull
|
||||
|
||||
cp target/release/lull dist/linux
|
||||
cp README.md dist/linux
|
||||
cp LICENSE dist/linux
|
||||
strip dist/linux/lull
|
||||
rm lull
|
||||
|
||||
mkdir dist/sounds
|
||||
|
||||
cp sounds/*.mp3 SOUNDS.md dist/sounds
|
||||
zip -r sounds.zip SOUNDS.md sounds/*.mp3
|
||||
|
|
Loading…
Reference in New Issue