saebekassebil / teoria

Javascript taught Music Theory
http://saebekassebil.github.io/teoria
MIT License
1.32k stars 114 forks source link

Build Example Fails with more Scales #75

Closed JRJurman closed 9 years ago

JRJurman commented 9 years ago

Not sure if this is an issue with my environment or not, I definitely was able to build this when I had cloned it on a different machine, but I get this error when trying to build (this is the example given in the readme).

image

Also, is there a way to just say I want ALL the scales? Not sure if there is a shorthand for that or not, but it would be useful...

Regardless, I might just for now add them manually to the jake file if I can, but I figured I would shoot this out.

saebekassebil commented 9 years ago

Hey @JRJurman !

Well, actually I'm not to keen on our entire build process - but of course it should work! I'll look into it asap.

Thanks for reporting.

saebekassebil commented 9 years ago

Works here (I'm using Bash on Mac OS X). It looks like PowerShell does something to the arguments when you comma-separate stuff on the command line. Maybe try to escape the commas?

saebekassebil commented 9 years ago

@JRJurman Try this (taken from StackOverflow

jake build scales=+blues`,+flamenco`,-chromatic

Apparently the ` "escapes" the comma

JRJurman commented 9 years ago

Yep that was the issue! And just trying it now in cmd, it seems to work just fine with what's in your readme... Thanks for the help!