We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The below changes cwd depending on gulp.src path. In the output it's not clear which path the command ran on.
cwd
gulp.src
return gulp.src([ 'composer.json', 'app/Requirements/composer.json', 'app/Plugins/*/composer.json', 'app/Widgets/*/composer.json', ], {read: false}) .pipe(shell([ 'composer install -o ' ], { cwd: '<%= dirname(file.path) %>', templateData: { dirname: path.dirname }, verbose: true }))
I think it would just be a simple case of updating https://github.com/sun-zheng-an/gulp-shell/blob/master/index.ts#L69 to include the cwd line lower down
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The below changes
cwd
depending ongulp.src
path. In the output it's not clear which path the command ran on.I think it would just be a simple case of updating https://github.com/sun-zheng-an/gulp-shell/blob/master/index.ts#L69 to include the
cwd
line lower downThe text was updated successfully, but these errors were encountered: