10 lines
266 B
Bash
10 lines
266 B
Bash
#!/bin/zsh
|
|
|
|
export ROOT=$(git rev-parse --show-toplevel)
|
|
export ASSIGNMENT_DIR="$ROOT/assignments"
|
|
export PRACTICES_DIR="$ROOT/practices"
|
|
export SHARED_DIR="$ROOT/shared"
|
|
export OUT_DIR="$ROOT/.out"
|
|
export ZIP_DIR="$ROOT/.out/zip"
|
|
export SCRIPTS_DIR="$ROOT/scripts"
|