You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment: Windows 10, Powershell 5.1, PHP7.2, Deployer 6.8.0
Issue: Can't execute specific custom command run on Windows 10 powershell
Command example: task('deploy_windows:react_app_build', function () { run('cd backend/react-app | npm install'); });
Command from Windows powershell cli directly works correctry cd backend/react-app | npm install
Command for linux works correctly: task('deploy:react_app_npm', function () { run('cd $PWD/backend/react-app && npm install'); });
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Environment: Windows 10, Powershell 5.1, PHP7.2, Deployer 6.8.0
Issue: Can't execute specific custom command run on Windows 10 powershell
Command example:
task('deploy_windows:react_app_build', function () { run('cd backend/react-app | npm install'); });
cd backend/react-app | npm install
task('deploy:react_app_npm', function () { run('cd $PWD/backend/react-app && npm install'); });
Beta Was this translation helpful? Give feedback.
All reactions