chvp does not like having the inputs during prepare

This commit is contained in:
Felix Van der Jeugt 2023-12-03 12:44:32 +01:00
parent 6c6dfac1b6
commit 6cbbd89a94
No known key found for this signature in database
GPG key ID: 58B209295023754D
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ inputfile="$PWD/../inputs/${day}.txt"
[ -x "prepare" ] || exit 0 [ -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' echo 'eh ge hebt precies niet alles geïnstalleerd staan'
else else
if [ -x "run" ]; then if [ -x "run" ]; then

View file

@ -19,7 +19,7 @@ for dir in *; do
cd "$dir" cd "$dir"
if test -x ./prepare; then if test -x ./prepare; then
echo "---------------------------------------------------------------------------------- $dir" 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' echo 'eh ge hebt precies niet alles geïnstalleerd staan'
else else
if test -x run; then if test -x run; then