mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
10 lines
153 B
Bash
Executable File
10 lines
153 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
BASEDIR=$(dirname "$0")/..
|
|
|
|
mkdir -p $BASEDIR/target
|
|
|
|
zip -rj $BASEDIR/target/assignment04.zip src/assignments/assignment04
|