Skip to content

Commit 1a0f880

Browse files
committed
Bring Go code formatting into compliance
1 parent 7b68b48 commit 1a0f880

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

legacy/builder/wipeout_build_path_if_build_options_changed.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ func (s *WipeoutBuildPathIfBuildOptionsChanged) Run(ctx *types.Context) error {
4141

4242
var opts *properties.Map
4343
if err := json.Unmarshal([]byte(buildOptionsJson), &opts); err != nil || opts == nil {
44-
panic(constants.BUILD_OPTIONS_FILE + " is invalid")
44+
panic(constants.BUILD_OPTIONS_FILE + " is invalid")
4545
}
4646

4747
var prevOpts *properties.Map
4848
if err := json.Unmarshal([]byte(previousBuildOptionsJson), &prevOpts); err != nil || prevOpts == nil {
49-
ctx.GetLogger().Println(constants.LOG_LEVEL_DEBUG, constants.MSG_BUILD_OPTIONS_INVALID + constants.MSG_REBUILD_ALL, constants.BUILD_OPTIONS_FILE)
49+
ctx.GetLogger().Println(constants.LOG_LEVEL_DEBUG, constants.MSG_BUILD_OPTIONS_INVALID+constants.MSG_REBUILD_ALL, constants.BUILD_OPTIONS_FILE)
5050
return doCleanup(ctx.BuildPath)
5151
}
5252

0 commit comments

Comments
 (0)