| View Revisions: Issue #3518 |
[ All Revisions ] [ Back to Issue ] |
| Summary |
0003518: /bin/bash is not portable for running Zandronum testing from Doomseeker; this doesn't work with OpenBSD's base operating system |
|
| Revision |
2018-09-24 19:32 by WubTheCaptain |
|
| Description |
/bin/bash is not POSIX-portable. This means running Zandronum testing binaries requires installing bash as a package, or manually changing Doomseeker's generated #!/bin/bash shell scripts to use a POSIX sh interpreter #!/bin/sh (or equivalent).
Changing Doomseeker's script generation code from #!/bin/bash to #!/bin/sh should remain compatible with bash and POSIX sh. |
|
| Revision |
2018-09-24 19:29 by WubTheCaptain |
|
| Description |
/bin/bash is not POSIX-portable. This means running Zandronum testing binaries requires installing bash as a package, or manually changing Doomseeker's generated #!/bin/bash shell scripts to use a POSIX sh interpreter #!/bin/sh (or equivalent).
Changing Doomseeker's script generation code from #!/bin/bash to #!/bin/sh should remain compatible with bash. |