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
The generated shell script (-o:sh) uses bash features, for example flags of the echo command which are undefined in POSIX shells, so it should use the correct shebang line:
#!/bin/bash
Without this, running the script on systems where /bin/sh is not bash results in garbled output (for example on macOS):