Open michael-smith-nz opened 9 years ago
Curator curator file path is wrong when first installed. The path is located at C:\Users\username\AppData\Roaming\npm\curator
curator
C:\Users\username\AppData\Roaming\npm\curator
File should look like
#!/bin/sh basedir=`dirname "$0"` case `uname` in *CYGWIN*) basedir=`cygpath -w "$basedir"`;; esac if [ -x "$basedir/coffee" ]; then "$basedir/coffee" "$basedir/node_modules/eda-curator/bin/curator" "$@" ret=$? else coffee "$basedir/node_modules/eda-curator/bin/curator" "$@" ret=$? fi exit $ret
Curator
curator
file path is wrong when first installed. The path is located atC:\Users\username\AppData\Roaming\npm\curator
File should look like