diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 23:03:36 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 23:03:36 (EDT) |
commit | 5e9cea65c5f5e790024ce6731336641873cde750 (patch) | |
tree | b55f7e75a7df1a5c9121996eda304bfbe98407ec | |
parent | 6c35678d1990e9195b7bda9437d58f77fa9c65de (diff) |
install_find_pkgs(): Vertically align case construct
-rw-r--r-- | src/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.sh b/src/install.sh index 1db5154..aa89037 100644 --- a/src/install.sh +++ b/src/install.sh @@ -167,9 +167,9 @@ install_find_pkgs() while read -r type name base_url; do case "${type}" in - 'src') gzip=false;; + 'src') gzip=false;; 'src/gz') gzip=true;; - *) continue;; + *) continue;; esac printf '%s %s %s\n' "${type}" "${name}" \ "${base_url}" >&${opkg_conf_fd} |