mirror of
https://github.com/rock88/moonlight-nx
synced 2024-11-10 06:14:15 +00:00
9 lines
294 B
Bash
Executable file
9 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Exit with an error code if any of the commands fail
|
|
set -e
|
|
trap 'last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
|
|
trap 'echo "\"${last_command}\" command failed with exit code $?."' EXIT
|
|
|
|
# Run build
|
|
make -j NIGHTLY_BUILD=`git rev-parse --short "$GITHUB_SHA"`
|