-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
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
Shell script not executing correctly #41
Comments
+1 |
It (the code) seems like it splits on the first space, it's impossible to properly chain commands because of that either.
|
I'm trying to install some npm package in a different directory but it doesn't work.
But no success so far even though I tried different ways :( |
The answer in this post helped me to resolve the issue. Reposting as it may help others. |
When executing a command with output redirection or piping, the precedence isn't respected. (I think I can give a better explanation with an example).
When running
echo "Hello" > ./world.txt
withwebpack-shell-plugin
, instead of having a file namedworld.txt
with the contentsHello
, I get the string"Hello" > ./world.txt
in the consoleI have created a repo with the repro of the issue I'm seeing.
The text was updated successfully, but these errors were encountered: