asticode / go-astilectron-bundler

Bundle your Astilectron app with ease
MIT License
129 stars 68 forks source link

Install and invalid char : #86

Open BenRacicot opened 3 years ago

BenRacicot commented 3 years ago

Just trying to install and build but getting an invalid char ':' error.

go get -u https://github.com/asticode/go-astilectron-bundler.git
go get https:/github.com/asticode/go-astilectron-bundler.git: malformed module path "https:/github.com/asticode/go-astilectron-bundler.git": invalid char ':'

Looks like there's a bad path within a module but not sure.

asticode commented 3 years ago

The second line you pasted is weird :

https:/github.com/asticode/go-astilectron-bundler.git

It should be https://github.com/asticode/go-astilectron-bundler.git.

My guess is you should run go get -u github.com/asticode/go-astilectron-bundler instead of go get -u https://github.com/asticode/go-astilectron-bundler.git.