Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16

- name: Set up GOPATH
run: echo "::set-env name=GOPATH::$(go env GOPATH)"
run: echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV

- name: Checkout code
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.11', '1.12', '1.13', '1.14', '1.15']
go: ['1.11', '1.12', '1.13', '1.14', '1.15', '1.16']
env:
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16

- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .plzconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[please]
version = 15.5.0
version = 16.0.0-prerelease.13

[go]
importpath = emperror.dev/errors
Expand Down
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_repo(
name = "pleasings2",
repo = "sagikazarmark/mypleasings",
revision = "f8a12721c6f929db3e227e07c152d428ac47ab1b",
revision = "ae0d49ae0eac8d227d202e9aed3b1b1b8915c073",
)

sh_cmd(
Expand Down
5 changes: 2 additions & 3 deletions pleasew
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi
# If this exists at any version, let it handle any update.
TARGET="${LOCATION}/please"
if [ -f "$TARGET" ]; then
exec "$TARGET" "$@"
exec "$TARGET" ${PLZ_ARGS:-} "$@"
fi

URL_BASE="`grep -i "^downloadlocation" .plzconfig | cut -d '=' -f 2 | tr -d ' '`"
Expand Down Expand Up @@ -67,6 +67,5 @@ curl -fsSL "${PLEASE_URL}" | tar -xJpf- --strip-components=1 -C "$DIR"
for x in `ls "$DIR"`; do
ln -sf "${DIR}/${x}" "$LOCATION"
done
ln -sf "${DIR}/please" "${LOCATION}/plz"
echo -e >&2 "${GREEN}Should be good to go now, running plz...${RESET}"
exec "$TARGET" "$@"
exec "$TARGET" ${PLZ_ARGS:-} "$@"