mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
Merge pull request #105 from YunoHost/remove-the-parentheses-from-the-install-args
remove the parentheses from the install args
This commit is contained in:
commit
ed35d4ac21
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ parse_check_process() {
|
|||
# Looking like domain=foo.com&path=/bar&password=stuff
|
||||
# "Standard" arguments like domain/path will later be overwritten
|
||||
# during tests
|
||||
local install_args=$( extract_check_process_section "^; Manifest" "^; " $test_serie_rawconf | awk '{print $1}' | tr -d '"' | tr '\n' '&')
|
||||
local install_args=$( extract_check_process_section "^; Manifest" "^; " $test_serie_rawconf | sed 's/\s*(.*)$//g' | tr -d '"' | tr '\n' '&')
|
||||
local preinstall_template=$(extract_check_process_section "^; pre-install" "^; " $test_serie_rawconf)
|
||||
local action_infos=$( extract_check_process_section "^; Actions" "^; " $test_serie_rawconf)
|
||||
local configpanel_infos=$( extract_check_process_section "^; Config_panel" "^; " $test_serie_rawconf)
|
||||
|
|
Loading…
Add table
Reference in a new issue