diff options
author | Jesús <heckyel@hyperbola.info> | 2022-05-24 22:45:43 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-05-24 22:45:43 +0800 |
commit | d142a77e0d83aeee1141e55eae44e24aedcacde8 (patch) | |
tree | 2d040578cfc04a647b64afbf07ef175244d1565d | |
parent | f7e0ab489db73ee99d3de02ffc5c43ff06af42e4 (diff) | |
download | hyperfi-d142a77e0d83aeee1141e55eae44e24aedcacde8.tar.lz hyperfi-d142a77e0d83aeee1141e55eae44e24aedcacde8.tar.xz hyperfi-d142a77e0d83aeee1141e55eae44e24aedcacde8.zip |
Add -r parameter to read
-rw-r--r-- | hyperfi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -860,7 +860,7 @@ installbase(){ sed -i '/^\s*$/d' /tmp/hyperfi-custom-package-list sed -i '/^#/ d' /tmp/hyperfi-custom-package-list options=() - while read pkg; do + while read -r pkg; do options+=("${pkg}" "" on) done < /tmp/hyperfi-custom-package-list sel=$(whiptail --backtitle "${apptitle}" --title "${txtinstallhyperbolacustompackagelist}" --checklist "" 0 0 0 \ |