Fix Error on install: -bash: -e: command not found#6
Fix Error on install: -bash: -e: command not found#6thvd wants to merge 1 commit intowadewegner:masterfrom
Conversation
|
In commit b5f0a38 the echo command added the -e argument to The problem is that when running So when |
|
I think @mloh is correct. -e was added to generated sfdx as a result of -e flag that was added in . generate.sh. Its weird but for some reason it looks like -e is not required (and adds extra -e character) for interpretation of escape characters when it comes to generating sfdx from generate.sh with echo. So i don't think merging this will break anything. But as of now current master branch is failing because of the extra '-e' character and won't work whatsoever until you remove it from the generated sfdx script. |
|
FWIW, this allowed me to install and run the code. |
|
@wadewegner looks like this pr helps people run the code. Is there anything needed in order to merge this one? |
|
Sorry all. This should have been fixed a long time ago. I just pushed an update to |
Fixes #5
Before merging though, i do think it's good to know why in the first place the
-eoption was added. So we are sure there is nothing breaking with this fix.