Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jsimnz committed May 31, 2014
1 parent 015fef0 commit c884878
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gotter.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ func main() {

// Make sure environment variable is set
if WORKSPACE == "" {
log.Error("[ERROR]: WORKSPACE enviromental variable not set!")
return errors.New("WORKSPACE enviromental variable not set!")
log.Error("[ERROR]: WORKSPACE enviroment variable not set!")
return errors.New("WORKSPACE enviroment variable not set!")
}
if GOPATH == "" {
log.Error("[ERROR]: GOPATH enviromental variable not set!")
return errors.New("GOPATH enviromental variable not set!")
log.Error("[ERROR]: GOPATH enviroment variable not set!")
return errors.New("GOPATH enviroment variable not set!")
}

return nil
Expand Down

0 comments on commit c884878

Please sign in to comment.