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
When I tried to execute the script it fails. I fixed the script with two small changes:
Line 6: /bin/bash -c "pushd build/raspberry/release"
and
Line 7: cmake -DCMAKE_BUILD_TYPE=Release .
This was on a fairly fresh installation of Raspbian.
The error was at the start: pushd not found and after fixing that: cmakelists.txt was not found in '/' which wasn't where the buildme script was.
The text was updated successfully, but these errors were encountered:
pushd is bash-specific, I guess your /bin/sh is not set to bash. I guess the shebang should really be #!/bin/bash instead since this is used.
pushd
Sorry, something went wrong.
Yup that would fix it :)
I've updated buildme to use /bin/bash. Is that okay now?
Successfully merging a pull request may close this issue.
When I tried to execute the script it fails. I fixed the script with two small changes:
Line 6: /bin/bash -c "pushd build/raspberry/release"
and
Line 7: cmake -DCMAKE_BUILD_TYPE=Release .
This was on a fairly fresh installation of Raspbian.
The error was at the start: pushd not found
and after fixing that: cmakelists.txt was not found in '/' which wasn't where the buildme script was.
The text was updated successfully, but these errors were encountered: