mirror of
https://github.com/YunoHost/package_check.git
synced 2024-09-03 20:06:20 +02:00
Remove double-quotes from parsed check_process
This commit is contained in:
parent
e08672bb2b
commit
2a8d415ac1
1 changed files with 2 additions and 0 deletions
|
@ -863,6 +863,8 @@ then
|
|||
do
|
||||
# Extract each argument by removing spaces or tabulations before a parenthesis
|
||||
add_arg="$(echo $line | sed 's/[ *|\t*](.*//')"
|
||||
# Remove all double quotes
|
||||
add_arg="${add_arg//\"/}"
|
||||
# Then add this argument and follow it by &
|
||||
manifest_arguments="${manifest_arguments}${add_arg}&"
|
||||
done < "$partial_check_process"
|
||||
|
|
Loading…
Add table
Reference in a new issue