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 script files start-develop.sh and stop-develop.sh are using the following shebang: #!/bin/sh.
However, the scripts itself are not shell independent. This is because bash-specific substitutions are used.
Thus, we should explicitly state within the shebang that these scripts have to be ran with a bash (#!/usr/bin/env bash). Otherwise this will lead to problems down the line.
The text was updated successfully, but these errors were encountered:
The script files
start-develop.sh
andstop-develop.sh
are using the following shebang:#!/bin/sh
.However, the scripts itself are not shell independent. This is because bash-specific substitutions are used.
Thus, we should explicitly state within the shebang that these scripts have to be ran with a bash (
#!/usr/bin/env bash
). Otherwise this will lead to problems down the line.The text was updated successfully, but these errors were encountered: