Skip to content

Commit

Permalink
Merge pull request #6 from node-migrator-bot/clean
Browse files Browse the repository at this point in the history
path.existsSync -> fs.existsSync
  • Loading branch information
nornagon committed Jul 8, 2012
2 parents eb84a4a + 3a4ce9b commit 57a9f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/zap
Expand Up @@ -51,7 +51,7 @@ if (process.argv[2] === '--one') {
// run a suite
var test_targets = []
if (process.argv.length <= 2) {
if (!path.existsSync('./test')) {
if (!fs.existsSync('./test')) {
console.error(
"Test directory (./test) not found. zap suggests:\n\n" +
"\x1b[36m$\x1b[0m mkdir ./test\n" +
Expand Down

0 comments on commit 57a9f7e

Please sign in to comment.