Skip to content

Commit

Permalink
only double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
derekk-nm committed Sep 27, 2024
1 parent c169df9 commit 6a1b88d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@

for field in fields:
testmo_args = [
"--resources", f'"{args.destination}"',
"--name", f'"{field}"',
"--resources", f"{args.destination}",
"--name", f"{field}",
"--type", "string",
"--value", f'"{fields[field]}"'
"--value", f"{fields[field]}"
]
testmo_command = ["npx", "testmo", "automation:resources:add-field"]
full_command = testmo_command + testmo_args
Expand Down

0 comments on commit 6a1b88d

Please sign in to comment.