Skip to content

Commit

Permalink
Catch up with deno install script default path change.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjeffburke committed Dec 9, 2019
1 parent bf64367 commit 8ab5733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -98,10 +98,10 @@ test-plugins: ${TARGETS}

.PHONY: test-deno
test-deno: ${TARGETS} build/tests.esm.js
if [ ! -f ~/.deno/bin/deno ]; then \
if [ ! -f ~/.local/bin/deno ]; then \
curl -fsSL https://deno.land/x/install/install.sh | sh; \
fi;
~/.deno/bin/deno test-deno/deno-test.js
~/.local/bin/deno test-deno/deno-test.js

.PHONY: travis-coverage
travis-coverage: clean coverage
Expand Down

0 comments on commit 8ab5733

Please sign in to comment.