Skip to content

Commit 745fccb

Browse files
committed
Makefile/CI: build binary to build/lltdResponder
1 parent 38a1814 commit 745fccb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,11 @@ jobs:
292292
BIN_NAME="${ARTIFACT_NAME}.raw"
293293
mkdir -p dist
294294
if [ "${{ runner.os }}" = "Linux" ]; then
295-
if [ ! -f lltdResponder ]; then
295+
if [ ! -f build/lltdResponder ]; then
296296
echo "Binary not found" >&2
297297
exit 1
298298
fi
299-
cp lltdResponder "dist/${BIN_NAME}"
299+
cp build/lltdResponder "dist/${BIN_NAME}"
300300
else
301301
BIN_PATH="build/Build/Products/${{ matrix.build_type }}/lltdDaemon"
302302
if [ ! -f "$BIN_PATH" ]; then

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CC ?= gcc
44
CFLAGS += -Wall -Wextra
55

6-
BIN_NAME ?= lltdResponder
6+
BIN_NAME ?= build/lltdResponder
77

88
TEST_DIR := build/tests
99
TEST_CFLAGS := $(CFLAGS) -IlltdDaemon -DLLTD_TESTING

0 commit comments

Comments
 (0)