Skip to content

Commit

Permalink
Fix #3 again, last fix was incorrect.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlinaNova21 committed Mar 28, 2019
1 parent 651b5b9 commit d45cab6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.3.1
v1.3.2
2 changes: 1 addition & 1 deletion cmd/screeps-launcher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func main() {
l := launcher.Launcher{}
l.Prepare()
cmd := "start"
if len(os.Args) >= 1 {
if len(os.Args) > 1 {
cmd = os.Args[1]
}
switch cmd {
Expand Down

0 comments on commit d45cab6

Please sign in to comment.