From 2c247e1eb9f884cc98ecafc29db093d2de70ce8f Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <joseph@walton-rivers.uk> Date: Fri, 29 Apr 2022 13:36:07 +0100 Subject: [PATCH] ensure the executable is named correctly in the build script --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 7cdcef2..c4b65f0 100755 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ CACHE=/tmp/fggl/ LOG=$CACHE/demo.log BUILD_PATH="builds/cli" -DEMO_EXE="$PWD/$BUILD_PATH/demo/FgglDemo" +DEMO_EXE="$PWD/$BUILD_PATH/demo/demo" # check cmake exists if [ ! -x "$(command -v cmake)" ]; then -- GitLab