File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 33CC ?= gcc
44CFLAGS += -Wall -Wextra
55
6- BIN_NAME ?= lltdResponder
6+ BIN_NAME ?= build/ lltdResponder
77
88TEST_DIR := build/tests
99TEST_CFLAGS := $(CFLAGS ) -IlltdDaemon -DLLTD_TESTING
You can’t perform that action at this time.
0 commit comments