Files
OpenGL_Intro/create_code_archive_for_blackboard_LINUX.sh
Peder Bergebakken Sundt 9aea87f7e9 Fix the delivery scripts
It adds in the other resources, but ignores the ones handed out
2021-10-14 16:24:19 +02:00

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"