Skip to content
  • Gaëtan Lehmann's avatar
    Reference bash explicitly in shebang lines · 8653d286
    Gaëtan Lehmann authored and Brad King's avatar Brad King committed
    On Solaris, where /bin/sh is actually sh, not bash, some expressions
    like $() are not supported.  Git's own scripts on this machine are
    configured to use "#!/bin/bash".  Change our shebang line to
    
      #!/usr/bin/env bash
    
    which should work almost everywhere.
    8653d286