diff options
author | Jeff Bilyk <jbilyk@gmail.com> | 2011-02-27 14:51:55 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-02-27 15:03:49 -0600 |
commit | 34f522070a0b0e0460ecc02207aa7cc94d0becc6 (patch) | |
tree | fcab6094f0b46abdc5874932f5a331ae69def478 | |
parent | 8a330b843f257e0694c291785e447371a59ff314 (diff) | |
download | alpine-conf-34f522070a0b0e0460ecc02207aa7cc94d0becc6.zip |
setup-alpine: fix typo when calling setup-timezone
fix typo when calling setup-timezone
-rw-r--r-- | setup-alpine.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-alpine.in b/setup-alpine.in index aeda76a..aeab41a 100644 --- a/setup-alpine.in +++ b/setup-alpine.in @@ -77,6 +77,6 @@ fi printf "Change timezone (default is UTC)? [y/N]?" default_read setuptz "n" -if [ $setuptz == "Y" ] || [ $setuprtz == "y" ]; then +if [ $setuptz == "Y" ] || [ $setuptz == "y" ]; then $PREFIX/sbin/setup-timezone fi |