Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Commit

Permalink
Don't include quotes around hg revisions
Browse files Browse the repository at this point in the history
Prior to this change, the saved revision in a Godeps.json would include
the single quotes around it from the template.
  • Loading branch information
euank committed Jan 13, 2017
1 parent 88cb03c commit 8ed35cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ var vcsGit = &VCS{
var vcsHg = &VCS{
vcs: vcs.ByCmd("hg"),

IdentifyCmd: "parents --template '{node}'",
IdentifyCmd: "parents --template {node}",
DescribeCmd: "log -r . --template {latesttag}-{latesttagdistance}",
DiffCmd: "diff -r {rev}",
ListCmd: "status --all --no-status",
Expand Down

0 comments on commit 8ed35cb

Please sign in to comment.