openshift-cloud-functions / knative-operators

Integration for Knative and the Operator Lifecycle Manager
Apache License 2.0
21 stars 27 forks source link

Use `/usr/bin/env bash` instead of `/bin/bash` #4

Closed vdemeester closed 5 years ago

vdemeester commented 5 years ago

Some systems may not have /bin/bash (NixOS for example)… Using /usr/bin/env bash has the benefit of looking for whatever the default version of the program is in your current environment.

Signed-off-by: Vincent Demeester vincent@sbr.pm

jcrossley3 commented 5 years ago

Thanks!