Skip to content

Commit

Permalink
Quick hack: fix gulp path, see sequelize#138
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrotoff committed Jun 2, 2015
1 parent 7bb9b3c commit d91620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/sequelize
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
var spawn = require('child_process').spawn;
var fs = require('fs');
var path = require('path');
var gulp = path.resolve(__dirname, '..', 'node_modules', 'gulp', 'bin', 'gulp.js');
var gulp = path.resolve(__dirname, '..', '..', 'gulp', 'bin', 'gulp.js');
var args = process.argv.slice(2);
var yargs = require('yargs');
var _ = require('lodash');
Expand Down

0 comments on commit d91620a

Please sign in to comment.