Skip to content

Commit e272a35

Browse files
committed
Fix rmt-client-setup call (remove double quotes)
1 parent f93926f commit e272a35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/tools/rmt-client-setup-res

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ $CURL --silent --show-error --insecure "$REGURL/tools/rmt-client-setup" --output
238238
echo "Running rmt-client-setup $PARAMS"
239239
if [ -n "$YES_PARAM" ]; then
240240
PARAMS=$(echo "$PARAMS" | sed 's/--yes//')
241-
yes | sh rmt-client-setup "$PARAMS"
241+
yes | sh rmt-client-setup $PARAMS
242242
else
243-
sh rmt-client-setup "$PARAMS"
243+
sh rmt-client-setup $PARAMS
244244
fi
245245

246246
if [[ ${SLL_version} -gt 8 ]]; then

0 commit comments

Comments
 (0)