Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gofmt #333

Merged
merged 1 commit into from
Jun 17, 2018
Merged

gofmt #333

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
2 changes: 1 addition & 1 deletion src/please.go
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ func please(tid int, state *core.BuildState, parsePackageOnly bool, include, exc
func doTest(targets []core.BuildLabel, surefireDir cli.Filepath, resultsFile cli.Filepath) (bool, *core.BuildState) {
os.RemoveAll(string(surefireDir))
os.RemoveAll(string(resultsFile))
os.MkdirAll(string(surefireDir),0755)
os.MkdirAll(string(surefireDir), 0755)
success, state := runBuild(targets, true, true)
test.CopySurefireXmlFilesToDir(state.Graph, string(surefireDir))
test.WriteResultsToFileOrDie(state.Graph, string(resultsFile))
Expand Down
12 changes: 6 additions & 6 deletions tools/please_pex/pex/pex.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ import (

// A Writer implements writing a .pex file in various steps.
type Writer struct {
zipSafe bool
shebang string
realEntryPoint string
testSrcs []string
testIncludes []string
testRunner string
zipSafe bool
shebang string
realEntryPoint string
testSrcs []string
testIncludes []string
testRunner string
}

// NewWriter constructs a new Writer.
Expand Down