diff options
author | Eivind Uggedal <eivind@uggedal.com> | 2013-08-12 22:26:16 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-08-13 06:33:34 +0000 |
commit | 762c6558e48409159fba7b12ce8fb0baf4e6e2f5 (patch) | |
tree | 5cbe8cfad3cce18dbb5b84f763d9faba6f6018e3 | |
parent | c35fd1190f24cb2021441714148ce9385761325e (diff) | |
download | alpine-conf-762c6558e48409159fba7b12ce8fb0baf4e6e2f5.zip |
setup-timezone: fix bug in getopts parsing
-rwxr-xr-x | setup-timezone.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-timezone.in b/setup-timezone.in index 41d4f16..5034223 100755 --- a/setup-timezone.in +++ b/setup-timezone.in @@ -47,7 +47,7 @@ while getopts "hp:z:" opt; do case $opt in h) usage;; p) POSIXTZ="$OPTARG";; - t) ZONEINFOFOLDER="$OPTARG";; + z) ZONEINFOFOLDER="$OPTARG";; esac done |