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
if PROXY_HOST set, the generated post-install.sh failed with error:
\cygwin\post-install.sh: line 5: syntax error near unexpected token `then'
The failure is the ";" in line 5 with echo: the ";" terminate the command and then the "then" is unexpected.
Is "then" allone in the next line, then it works:
echo if [[ $HOSTNAME == "%COMPUTERNAME%" ]]
echo then
You can try in a interactiv shell: echo message; then it display the same error.
With kind regards
The text was updated successfully, but these errors were encountered:
if PROXY_HOST set, the generated post-install.sh failed with error:
\cygwin\post-install.sh: line 5: syntax error near unexpected token `then'
The failure is the ";" in line 5 with echo: the ";" terminate the command and then the "then" is unexpected.
Is "then" allone in the next line, then it works:
echo if [[ $HOSTNAME == "%COMPUTERNAME%" ]]
echo then
You can try in a interactiv shell: echo message; then it display the same error.
With kind regards
The text was updated successfully, but these errors were encountered: