Skip to content

Instantly share code, notes, and snippets.

@OlegGorj
Created October 10, 2018 21:40
Show Gist options
  • Save OlegGorj/80d60b93a639629799683440593dfab9 to your computer and use it in GitHub Desktop.
Save OlegGorj/80d60b93a639629799683440593dfab9 to your computer and use it in GitHub Desktop.

Use '@' only once. It is only needed at the very beginning of the string, but you have it twice. The line continuations are very literal, and your current code reads:

@NODE_ENV=test @NODE_PATH=lib ./node_modules/.bin/expresso $(TESTFLAGS) $(SPECS)

The '@' on NODE_PATH is getting passed to the shell, which you do not want.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment