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
{{ message }}
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
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.