This commit is contained in:
minish 2024-12-27 17:59:51 -05:00
parent 00c368e282
commit 327924bc38
Signed by: min
SSH Key Fingerprint: SHA256:NFjjdbkd6u7aoMlcrDCVvz6o2UBtlAuPm8IQ2vhZ3Fg
1 changed files with 0 additions and 5 deletions

View File

@ -12,7 +12,6 @@ die() {
[[ $EUID -ne 0 ]] && die "root is required to install on a system"
# parse args
POSITIONAL_ARGS=()
while [[ $# -gt 0 ]]; do
case $1 in
-c|--nixos-config)
@ -25,10 +24,6 @@ while [[ $# -gt 0 ]]; do
shift # past argument
shift # past value
;;
*)
POSITIONAL_ARGS+=("$1") # save positional arg
shift # past argument
;;
esac
done