when looking into the deployment log file, you find:
scripts/deploy.sh: line 5: $'\r': command not found
: invalid option namene 6: set: pipefail
this is most likely due to the fact the the line endings are windows and not unix (cr+lf instead of lf)
check by running git ls-files --eol:
i/crlf w/crlf attr/ deploy.ps1
i/crlf w/crlf attr/ deploy.sh
i/crlf w/crlf attr/ preProvision.ps1
i/crlf w/crlf attr/ preProvision.sh
and sure enough deploy.sh and preProvision.sh are with crlf (windows) and not lf (linux)
when looking into the deployment log file, you find:
scripts/deploy.sh: line 5: $'\r': command not found
: invalid option namene 6: set: pipefail
this is most likely due to the fact the the line endings are windows and not unix (cr+lf instead of lf)
check by running git ls-files --eol:
i/crlf w/crlf attr/ deploy.ps1
i/crlf w/crlf attr/ deploy.sh
i/crlf w/crlf attr/ preProvision.ps1
i/crlf w/crlf attr/ preProvision.sh
and sure enough deploy.sh and preProvision.sh are with crlf (windows) and not lf (linux)