Skip to content
Snippets Groups Projects
Commit 204b5dab authored by Raphaël Gomès's avatar Raphaël Gomès
Browse files

hg: fix improper quoting in cli argument

`'wdir()'` is passed in with the escaped quotes, which breaks.
parent cfa50bfe
No related branches found
No related tags found
No related merge requests found
Pipeline #101862 passed
......@@ -23,7 +23,7 @@
cwd = "DATA-VARS:mercurial.main-repo-path"
[simple-command.variants.dimensions.rev.working-copy.environment]
REV = "--rev 'wdir()'"
REV = "--rev wdir()"
[simple-command.variants.dimensions.rev.tip]
default = true
......
......@@ -105,7 +105,7 @@
cases {
["working-copy"]{
environment {
["REV"] = "--rev 'wdir()'"
["REV"] = "--rev wdir()"
}
}
["tip"]{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment