mirror of
https://github.com/ZeusWPI/Advent-of-Code-Aggregator.git
synced 2024-11-21 14:41:10 +01:00
chvp does not like having the inputs during prepare
This commit is contained in:
parent
6c6dfac1b6
commit
6cbbd89a94
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ inputfile="$PWD/../inputs/${day}.txt"
|
|||
|
||||
[ -x "prepare" ] || exit 0
|
||||
|
||||
if ! ./prepare "$day" "$part" "$inputfile"; then
|
||||
if ! ./prepare "$day" "$part"; then
|
||||
echo 'eh ge hebt precies niet alles geïnstalleerd staan'
|
||||
else
|
||||
if [ -x "run" ]; then
|
||||
|
|
|
@ -19,7 +19,7 @@ for dir in *; do
|
|||
cd "$dir"
|
||||
if test -x ./prepare; then
|
||||
echo "---------------------------------------------------------------------------------- $dir"
|
||||
if ! ./prepare "$day" "$part" "$inputfile" >&2; then
|
||||
if ! ./prepare "$day" "$part" >&2; then
|
||||
echo 'eh ge hebt precies niet alles geïnstalleerd staan'
|
||||
else
|
||||
if test -x run; then
|
||||
|
|
Loading…
Reference in a new issue