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
https://godotengine.org/download/archive/4.1.2-stable/
github actions server, ubuntu image
I noticed that despite the build failing, this command:
$GODOT_EXECUTABLE --export-release --headless ${build} || die "Failed to create ${build} build"
The command die never executes, which means the engine is returning code 0, which means success, and that's not what it should happen.
die
echo $?
0
N/A
The text was updated successfully, but these errors were encountered:
Duplicate of #83042, consolidating there.
Sorry, something went wrong.
No branches or pull requests
Godot version
https://godotengine.org/download/archive/4.1.2-stable/
System information
github actions server, ubuntu image
Issue description
I noticed that despite the build failing, this command:
The command
die
never executes, which means the engine is returning code 0, which means success, and that's not what it should happen.Steps to reproduce
echo $?
to display the error code, it will always be0
Minimal reproduction project
N/A
The text was updated successfully, but these errors were encountered: