1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-07 05:31:21 +00:00

target/descriptor: Update default sudo command format

Due to changes introduced in devlib https://github.com/ARM-software/devlib/pull/339
the command placeholder should no longer be in quote so remove them from
the default value.
This commit is contained in:
Marc Bonnici 2018-11-15 15:17:58 +00:00
parent bb282eb19c
commit 88f708abf5

View File

@ -345,9 +345,9 @@ CONNECTION_PARAMS = {
"""), """),
Parameter( Parameter(
'sudo_cmd', kind=str, 'sudo_cmd', kind=str,
default="sudo -- sh -c '{}'", default="sudo -- sh -c {}",
description=""" description="""
Sudo command to use. Must have ``"{}"`` specified Sudo command to use. Must have ``{}`` specified
somewhere in the string it indicate where the command somewhere in the string it indicate where the command
to be run via sudo is to go. to be run via sudo is to go.
"""), """),