Skip to content

Commit

Permalink
Edits
Browse files Browse the repository at this point in the history
  • Loading branch information
grellyd committed Aug 29, 2023
1 parent f6c252e commit aef2ad6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ define deploy-dev
git pull origin dev -f && \
git submodule update --init --recursive && \
hugo --buildDrafts --buildFuture && \
cp -rf public /var/http && \
ls /var/http/ && \
go install && \
rm -f /var/http/grellyddotcom && \
cp -rf ./public /var/http && \
go build grellyddotcom.go && \
cp grellyddotcom /var/http/ && \
cp ./pages/templates /var/http/ && \
ls /var/http/ && \
systemctl restart grellyddotcom.service && \
systemctl status grellyddotcom.service
Expand Down
2 changes: 1 addition & 1 deletion handlers/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
func QRGen(w http.ResponseWriter, r *http.Request) {
fmt.Printf("r.RequestURI: %v\n", r.RequestURI)

path := "./pages/templates/qrgen.tmpl"
path := "./templates/qrgen.tmpl"

globallogger.Info("in qrgen")

Expand Down

0 comments on commit aef2ad6

Please sign in to comment.