Skip to content

Commit

Permalink
Fix Makefile to work on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
basicdays committed Dec 15, 2016
1 parent faee5d0 commit 1fa2d3e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

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

File renamed without changes.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: node_js
node_js:
- 'node'
- '6'
- '4'
- '4.5'
install: make --no-builtin-rules --jobs=4
script: make --no-builtin-rules full-test
- '4'
install: make -j4 build
script: make full-test
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# hack to get osx to recognize a chane in PATH
SHELL := /usr/bin/env sh
PATH := $(shell pwd)/node_modules/.bin:${PATH}

# Make Settings

.SECONDEXPANSION:
Expand All @@ -7,8 +11,6 @@

# Vars

pwd := $(shell pwd)
PATH := ${pwd}/node_modules/.bin:${PATH}
test_command := mocha test --require=test/index --recursive


Expand Down
2 changes: 1 addition & 1 deletion lib/stream-async-iterator.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import type {Readable} from 'stream';

/**
* @type {Object.<string, symbol>}
* @type {Object.<string, Symbol>}
*/
export const states = {
notReadable: Symbol('not readable'),
Expand Down

0 comments on commit 1fa2d3e

Please sign in to comment.