8 lines
164 B
Bash
8 lines
164 B
Bash
|
#!/bin/bash
|
||
|
# strict mode http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
|
||
|
export SRC_DIR="./src"
|
||
|
export OUT_DIR="./build"
|