14 lines
230 B
Bash
Executable File
14 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
if test -f source.zip; then
|
|
rm -v source.zip
|
|
fi
|
|
zip -r source.zip \
|
|
Cargo.lock \
|
|
Cargo.toml \
|
|
src \
|
|
shaders \
|
|
resources/* \
|
|
-x"resources/helicopter.obj" \
|
|
-x"resources/lunarsurface.obj" \
|
|
-x"resources/.gitkeep"
|