summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2016-08-16 08:13:40 +0200
committerLaria Carolin Chabowski <laria@laria.me>2016-08-16 08:13:40 +0200
commita524bbdd3c7c84916ceb357fa6f83b4c8f98b82d (patch)
tree5d5cf1c840e705908195959270c888f01d3770c4
parent7f87916725053f237464237e65fd673b86f65df2 (diff)
downloadstartpage-a524bbdd3c7c84916ceb357fa6f83b4c8f98b82d.tar.gz
startpage-a524bbdd3c7c84916ceb357fa6f83b4c8f98b82d.tar.bz2
startpage-a524bbdd3c7c84916ceb357fa6f83b4c8f98b82d.zip
rename github account
-rw-r--r--README.markdown2
-rw-r--r--main.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.markdown b/README.markdown
index 065645d..8f3eb15 100644
--- a/README.markdown
+++ b/README.markdown
@@ -5,7 +5,7 @@ A simple start page with a background image from [/r/EarthPorn](http://www.reddi
## Installation
-`go get github.com/kch42/startpage`
+`go get github.com/silvasur/startpage`
## Configuration
diff --git a/main.go b/main.go
index 9db9d5a..4e2d25a 100644
--- a/main.go
+++ b/main.go
@@ -82,13 +82,13 @@ func loadTemplate() {
gopaths := strings.Split(os.Getenv("GOPATH"), ":")
for _, p := range gopaths {
var err error
- tpl, err = template.ParseFiles(path.Join(p, "src", "github.com", "kch42", "startpage", "template.html"))
+ tpl, err = template.ParseFiles(path.Join(p, "src", "github.com", "silvasur", "startpage", "template.html"))
if err == nil {
return
}
}
- panic(errors.New("could not find template in $GOPATH/src/github.com/kch42/startpage"))
+ panic(errors.New("could not find template in $GOPATH/src/github.com/silvasur/startpage"))
}
func initCmds() {