Skip to content

Commit

Permalink
Add Go 1.9 support for Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
plutov committed Sep 27, 2017
1 parent 7df73d9 commit a9c6325
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,6 +1,7 @@
language: go
go:
- 1.8
- 1.9

install:
- export PATH=$PATH:$HOME/gopath/bin
Expand Down
6 changes: 3 additions & 3 deletions cmd/playgo/main.go
Expand Up @@ -2,15 +2,15 @@ package main

import (
"fmt"
"github.com/plutov/playgo"
"os"

"github.com/plutov/playgo"
)

func main() {
url, err := playgo.ShareAndOpen()
if err != nil {
fmt.Println("Error: " + err.Error())
fmt.Println("USAGE: playgo [FILE]")
fmt.Printf("Error: %s\nUSAGE: playgo [FILE]\n", err.Error())
os.Exit(1)
}

Expand Down

0 comments on commit a9c6325

Please sign in to comment.