summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rwxr-xr-xinstall6
1 files changed, 3 insertions, 3 deletions
diff --git a/install b/install
index 78f050a..64116ea 100755
--- a/install
+++ b/install
@@ -103,14 +103,14 @@ function xtermConfigInstaller() {
function main() {
# parse gInstallConfigFile to see what should be installed
- configToInstall=()
+ local configToInstall=()
while read line; do
if [[ ! $line =~ ^[yYnN][[:blank:]]?- ]]; then
continue
fi
- flag=$(echo $line | cut -d '-' -f 1 | sed 's/ //g')
+ local flag=$(echo $line | cut -d '-' -f 1 | sed 's/ //g')
if [[ $flag =~ ^[yY]$ ]]; then
- config=$(echo $line | cut -d '-' -f 2 | sed 's/ //g')
+ local config=$(echo $line | cut -d '-' -f 2 | sed 's/ //g')
configToInstall+=("$config")
fi
done < $gInstallConfigFile