File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ parse_environment(){
111111 done
112112
113113 # Now, we can import the cleaned config and then delete it.
114- source ${safe_config}
115- rm -f ${safe_config}
114+ source " ${safe_config} "
115+ rm -f " ${safe_config} "
116116}
117117
118118install_syslinux () {
Original file line number Diff line number Diff line change @@ -103,16 +103,16 @@ parse_environment(){
103103
104104 # Zero check. If after cleaning either the key or value is null, then
105105 # write nothing
106- [ -z ${key} ] && continue
107- [ -z ${value} ] && continue
106+ [ -z " ${key} " ] && continue
107+ [ -z " ${value} " ] && continue
108108
109109 # write sanitized values to temp file
110110 echo " ${key} =${value} " >> ${safe_config}
111111 done
112112
113113 # Now, we can import the cleaned config and then delete it.
114- source ${safe_config}
115- rm -f ${safe_config}
114+ source " ${safe_config} "
115+ rm -f " ${safe_config} "
116116}
117117
118118install_packages () {
You can’t perform that action at this time.
0 commit comments