mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-22 02:43:34 +02:00
common: Fix bash shell script invocation
`#!/usr/bin/env bash` should be used to avoid hard paths. To address: dockcross-manylinux-x64: bad interpreter: /bin/bash^M: no such file or directory
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
exec ${0/${CROSS_TRIPLE}-/x86_64-linux-gnu-} --32 "$@"
|
||||
|
Reference in New Issue
Block a user