Commit 8a41be59 authored by nimrod's avatar nimrod
Browse files

Logic correction.

When I added the `|| true` to different Keybase utilities builds, it
applied to all of the previous commands which is not what I wanted. Wrap
them in curly brackets to get the behavior I wanted.
parent 0088321c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -240,9 +240,9 @@ RUN apt-get update && \
    export GOPATH=/usr/local/lib/go && \
    export PATH="$GOPATH/bin:$PATH" && \
    mkdir "$GOPATH" && \
    go get github.com/keybase/client/go/keybase || true && \
    go install -tags production github.com/keybase/client/go/keybase || true && \
    go get github.com/keybase/client/go/kbfs/kbfsfuse || true && \
    { go get github.com/keybase/client/go/keybase || true; } && \
    { go install -tags production github.com/keybase/client/go/keybase || true; } && \
    { go get github.com/keybase/client/go/kbfs/kbfsfuse || true; } && \
    export GO111MODULE=on && \
    go install github.com/giantswarm/semver-bump@latest && \
    go install github.com/nishanths/license/v5@latest && \