1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 02:01:16 +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(
'sudo_cmd', kind=str,
default="sudo -- sh -c '{}'",
default="sudo -- sh -c {}",
description="""
Sudo command to use. Must have ``"{}"`` specified
Sudo command to use. Must have ``{}`` specified
somewhere in the string it indicate where the command
to be run via sudo is to go.
"""),