From 5a8f4657e84679601fde1503fe7fd2204a1a29cb Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Thu, 20 Jan 2022 09:00:24 +0100 Subject: [PATCH] GitHub CI [Win, NDI]: missing quotes around NDI path In Windows, it contains spaces. --- .github/scripts/Windows/prepare_msys.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/Windows/prepare_msys.sh b/.github/scripts/Windows/prepare_msys.sh index 8076d3270..4fd6c7287 100644 --- a/.github/scripts/Windows/prepare_msys.sh +++ b/.github/scripts/Windows/prepare_msys.sh @@ -19,7 +19,7 @@ if test -d /c/Program\ Files/NDI; then NDI_D=$(ls -d /c/Program\ Files/NDI/*SDK) export CPATH=$CPATH:$NDI_D/Include export LIBRARY_PATH=$LIBRARY_PATH:$NDI_D/Lib/x64 - cat $NDI_D/Version.txt | sed 's/\(.*\)/\#define NDI_VERSION \"\1\"/' | tee /usr/local/include/ndi_version.h + cat "$NDI_D/Version.txt" | sed 's/\(.*\)/\#define NDI_VERSION \"\1\"/' | tee /usr/local/include/ndi_version.h fi JACK_D=/c/Program\ Files/JACK2