Skip to content

Commit

Permalink
Minor GHA changes for getting automated releases completed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-M committed Jun 18, 2024
1 parent 3252b6e commit e11baf1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkg/deej/scripts/linux/build-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ go build -o deej-dev -ldflags "-X main.gitCommit=$GIT_COMMIT -X main.versionTag=
if [ $? -eq 0 ]; then
echo 'Done.'
else
echo 'Error: "go build" exited with a non-zero code. Are you running this script from the root deej directory?'
echo 'Error: "go build" exited with a non-zero code.'
exit 1
fi

2 changes: 1 addition & 1 deletion pkg/deej/scripts/linux/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ go build -o deej-release -ldflags "-s -w -X main.gitCommit=$GIT_COMMIT -X main.v
if [ $? -eq 0 ]; then
echo 'Done.'
else
echo 'Error: "go build" exited with a non-zero code. Are you running this script from the root deej directory?'
echo 'Error: "go build" exited with a non-zero code.'
exit 1
fi

1 change: 1 addition & 0 deletions pkg/deej/scripts/misc/default-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ baud_rate: 9600
# adjust the amount of signal noise reduction depending on your hardware quality
# supported values are "low" (excellent hardware), "default" (regular hardware) or "high" (bad, noisy hardware)
noise_reduction: default

0 comments on commit e11baf1

Please sign in to comment.