Skip to content

Commit

Permalink
Changed environment variable
Browse files Browse the repository at this point in the history
TRAVIS_BUILD_DIR -> PWD

License: MIT
Signed-off-by: Trond Bråthen <[email protected]>
  • Loading branch information
tabrath committed Mar 6, 2017
1 parent ed55ebc commit 53509d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ deps: gx covertools
gx-go rewrite

sharness: deps
git clone https://github.com/multiformats/multihash.git $(TRAVIS_BUILD_DIR)/sharness
cd $(TRAVIS_BUILD_DIR)/multihash && go build -v . && ls && chmod +x ./multihash
export MULTIHASH_BIN="$(TRAVIS_BUILD_DIR)/multihash/multihash" && export TEST_EXPENSE=1 && make -j1 -C $(TRAVIS_BUILD_DIR)/sharness/tests/sharness
git clone https://github.com/multiformats/multihash.git $(PWD)/sharness
cd $(PWD)/multihash && go build -v . && ls && chmod +x ./multihash
export MULTIHASH_BIN="$(PWD)/multihash/multihash" && export TEST_EXPENSE=1 && make -j1 -C $(PWD)/sharness/tests/sharness

publish:
gx-go rewrite --undo

0 comments on commit 53509d3

Please sign in to comment.