Removes incorrect quotes in automated_script
This commit is contained in:
parent
aaa2ae5452
commit
d438c79a84
@ -3,7 +3,7 @@ automated_script ()
|
||||
script="$(kernel_cmdline script)"
|
||||
if [[ -n "$script" ]]; then
|
||||
stat_busy "Configuring $script"
|
||||
if [[ "$script" =~ "^http://" || "$script" =~ "^ftp://" ]]; then
|
||||
if [[ "$script" =~ ^http:// || "$script" =~ ^ftp:// ]]; then
|
||||
wget "$script" -q -O /tmp/startup_script >/dev/null
|
||||
rt=$?
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user