Compare commits

..

No commits in common. "ffe325a7f0eb90cc37318dc0d9a00c0572f19f14" and "e494c194681a50f9ea81cbecbe410a737829fc98" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -1,8 +1,7 @@
FROM golang:latest FROM golang:latest
MAINTAINER Andreas Neue <an@dnix.de> MAINTAINER Andreas Neue <an@dnix.de>
RUN apt -y update && apt -y upgrade && apt-get install -y fortune vim tzdata ca-certificates && apt-get clean RUN apt -y update && apt -y upgrade && apt-get install -y fortune vim ca-certificates && apt-get clean
RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime && dpkg-reconfigure -f noninteractive tzdata
WORKDIR /go/src/flokati WORKDIR /go/src/flokati
COPY . . COPY . .

View File

@ -29,8 +29,8 @@ func fuzzytimeHandleMessage(m *Message) {
func fuzzytimeShow(channel string) { func fuzzytimeShow(channel string) {
t := time.Now() t := time.Now()
h := t.Hour() h := t.Hour()
z, o := t.Zone() tzcorrect := 1
h = h + o h = h + tzcorrect // XXX: This should not be hardcoded
m := t.Minute() m := t.Minute()
s := "Es ist " s := "Es ist "
switch { switch {