Skip to content

Commit

Permalink
Fix setEnvSession issue
Browse files Browse the repository at this point in the history
  • Loading branch information
frankshen01 committed May 13, 2020
1 parent 2a0ab18 commit 14d8595
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.go text eol=lf
*.sh text
*.json text
*.sh text
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ git:
install:
# This script is used by the Travis build to install a cookie for
# go.googlesource.com so rate limits are higher when using `go get` to fetch
# packages that live there.
# See: https://github.com/golang/go/issues/12933
# packages that live there. See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh

script:
Expand Down
4 changes: 2 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ test-compile:

website:
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
echo "$(WEBSITE_REPO) not found in your GOPATH (It is necessary for layouts and assets), get-ting..."
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)

website-test:
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
echo "$(WEBSITE_REPO) not found in your GOPATH (It is necessary for layouts and assets), get-ting..."
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
Expand Down
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified go.mod
100644 → 100755
Empty file.
Empty file modified main.go
100644 → 100755
Empty file.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 14d8595

Please sign in to comment.