From 91562aa99cd8237a2dec1aff5101949e40bf7d75 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sat, 22 Oct 2022 21:02:10 +0800 Subject: [PATCH] pacstrap: remove obsolete option '-d' completely This has been obsolete for 4 years and I can hardly imagine people still using it (only to find that it doesn't actually work). --- pacstrap.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pacstrap.in b/pacstrap.in index 0e25ef8..0a0ff4d 100644 --- a/pacstrap.in +++ b/pacstrap.in @@ -47,14 +47,11 @@ if [[ -z $1 || $1 = @(-h|--help) ]]; then exit $(( $# ? 0 : 1 )) fi -while getopts ':C:cdGiKMNU' flag; do +while getopts ':C:cGiKMNU' flag; do case $flag in C) pacman_config=$OPTARG ;; - d) - # retired flag. does nothing. - ;; c) hostcache=1 ;;