File tree Expand file tree Collapse file tree 1 file changed +4
-14
lines changed
Expand file tree Collapse file tree 1 file changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -4,27 +4,17 @@ set -euo pipefail
44echo Deleting old builds
55cargo clean
66
7- echo Building for Linux
8- cargo build --target x86_64-unknown-linux-gnu --release
9-
10- echo Building for Windows
11- cargo build --target x86_64-pc-windows-gnu --release
7+ echo Building...
8+ cargo build --release
129
1310echo Creating folders
1411rm -rf Geometry-Rays
1512mkdir Geometry-Rays
1613
17- echo Copying compiled executables
18- cp ./target/x86_64-unknown-linux-gnu/release/geometry-rays-fyre ./Geometry-Rays
19- cp ./target/x86_64-pc-windows-gnu/release/geometry-rays-fyre.exe ./Geometry-Rays
14+ echo Copying executable
15+ cp ./target/release/geometry-rays-fyre ./Geometry-Rays
2016
2117echo Copying required folders
2218cp -r ./Resources ./Geometry-Rays
2319cp -r ./mods ./Geometry-Rays
2420cp -r ./save-data ./Geometry-Rays
25-
26- echo Zipping the package
27- 7z a -tzip Geometry-Rays.zip Geometry-Rays
28-
29- echo Removing temporary directory
30- rm -rf ./Geometry-Rays
You can’t perform that action at this time.
0 commit comments