Compare commits

..

2 Commits

Author SHA1 Message Date
exu
98b6723063 Handle first time execution 2023-11-17 16:47:58 +01:00
exu
e8c9df7dbd Change to env bash 2023-11-17 16:47:52 +01:00

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
@ -224,7 +224,9 @@ for choice in $choices; do
done done
' '
rm "$setupdir/notfoundpackages.txt" if [ -f "$setupdir/notfoundpackages.txt" ]; then
rm "$setupdir/notfoundpackages.txt"
fi
# NOTE on unattended pacman installing # NOTE on unattended pacman installing
# Option 1: Will assume the default choice # Option 1: Will assume the default choice