Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Remove trailing spaces from generated Gopkg.toml #766

Merged
merged 2 commits into from
Jun 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
Expand Down
6 changes: 3 additions & 3 deletions testdata/txn_writer/expected_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
Expand Down
6 changes: 3 additions & 3 deletions txn_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ var exampleTOML = []byte(`
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
Expand Down