We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In many of the .sh scripts, the first line points to bash being in /bin:
/bin
#!/bin/bash
However, on BSD operating systems, bash is not part of the base system, and could be in /usr/local/bin or /usr/pkg/bin
/usr/local/bin
/usr/pkg/bin
To make CPCtelera OS-agnostic, please change the first line in each affected script to the following:
#!/usr/bin/env bash
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In many of the .sh scripts, the first line points to bash being in
/bin
:#!/bin/bash
However, on BSD operating systems, bash is not part of the base system, and could be in
/usr/local/bin
or/usr/pkg/bin
To make CPCtelera OS-agnostic, please change the first line in each affected script to the following:
#!/usr/bin/env bash
The text was updated successfully, but these errors were encountered: