Removes incorrect quotes in automated_script
This commit is contained in:
parent
aaa2ae5452
commit
d438c79a84
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue