DEV Community

Discussion on: Golang, it was love at first sight.

Collapse
 
redeving profile image
Kelvin Thompson

Thanks, this is great for me since I'm a Go newbie. However, I kept getting a bash error:

syntax error: unexpected end of file

I had to add a semi-colon after after main.go so the parser didn't keep going insane. I'm running LMDE4.

Original: #Create Go project
goproject () { mkdir -p $1/{src,bin,pkg,vendor} && touch $1/main.go }

No Error:#Create Go project
goproject () { mkdir -p $1/{src,bin,pkg,vendor} && touch $1/main.go; }

Thanks again! Cheers!