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
I'm trying to use concurrently to execute some bash functions in my shell that work fine when executed alone. However, they fail when being run with concurrently. After adding echo $0 to the functions, I realized that they're failing because concurrently is executing them with /bin/sh instead of bash.
The text was updated successfully, but these errors were encountered:
I'm trying to use
concurrently
to execute some bash functions in my shell that work fine when executed alone. However, they fail when being run with concurrently. After addingecho $0
to the functions, I realized that they're failing becauseconcurrently
is executing them with/bin/sh
instead ofbash
.The text was updated successfully, but these errors were encountered: