summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@jerkface.net>2019-06-25 23:23:26 -0400
committerAndrew Cady <d@jerkface.net>2019-06-25 23:23:26 -0400
commiteaebb47355e300b09b2d7fc1238411039b34fd26 (patch)
tree35b05cdd886be9da569a96234df15bc02cc61bf3
parentde807222bd96fe533617ba650a9357963eb4f118 (diff)
selfstrap: allow '--unpack'
-rwxr-xr-xsrc/selfstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selfstrap b/src/selfstrap
index 7f331e9..daa6431 100755
--- a/src/selfstrap
+++ b/src/selfstrap
@@ -30,7 +30,7 @@ while [ $# -gt 0 ]; do
30 -h|--help) usage 0 ;; 30 -h|--help) usage 0 ;;
31 -v|--verbose) VERBOSE=y ;; 31 -v|--verbose) VERBOSE=y ;;
32 --skip-update) SKIP_UPDATE=y ;; 32 --skip-update) SKIP_UPDATE=y ;;
33 --unpack) UNPACK_ONLY=y; die 'unimplemented' ;; 33 --unpack) UNPACK_ONLY=y ;;
34 --packages) x=$(cat < "$2") || die "could not read file '$2'" 34 --packages) x=$(cat < "$2") || die "could not read file '$2'"
35 EXTRA_PACKAGES="$EXTRA_PACKAGES $x" 35 EXTRA_PACKAGES="$EXTRA_PACKAGES $x"
36 shift ;; 36 shift ;;