diff options
author | Andrew Cady <d@jerkface.net> | 2019-06-25 23:23:26 -0400 |
---|---|---|
committer | Andrew Cady <d@jerkface.net> | 2019-06-25 23:23:26 -0400 |
commit | eaebb47355e300b09b2d7fc1238411039b34fd26 (patch) | |
tree | 35b05cdd886be9da569a96234df15bc02cc61bf3 | |
parent | de807222bd96fe533617ba650a9357963eb4f118 (diff) |
selfstrap: allow '--unpack'
-rwxr-xr-x | src/selfstrap | 2 |
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 ;; |