Skip to content

Commit

Permalink
Use a more ubiquitous space cleaner. (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-rieke committed Jan 27, 2024
1 parent 9d3634f commit e9e0167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atrium/vestibulum/trcshbase/trcsh.go
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ collaboratorReRun:
os.Args = argsOrig
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError) //Reset flag parse to allow more toolset calls.

deployLine = strings.Trim(deployLine, " ")
deployLine = strings.TrimSpace(deployLine)
deployArgs := strings.Split(deployLine, " ")
control := deployArgs[0]
if len(deployArgs) > 1 {
Expand Down

0 comments on commit e9e0167

Please sign in to comment.