Skip to content

Commit

Permalink
Fix escaping inside run.sh file.
Browse files Browse the repository at this point in the history
  • Loading branch information
anmaped committed Oct 21, 2024
1 parent 3db786a commit c22fe28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion unittests/integration/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ echo -e "
$CHECK_GCC
all:
$CXX_INC -Wall -Wextra -std=gnu++11 $DEBUG -I"$(path "$SCRIPT_PATH/../../rtmlib2/src/")" "sample_monitor.cpp" "sample_instrumentation.cpp" -o test -latomic
$CXX_INC -Wall -Wextra -std=gnu++11 $DEBUG -I\"$SCRIPT_PATH/../../rtmlib2/src/\" \"sample_monitor.cpp\" \"sample_instrumentation.cpp\" -o test -latomic
clean:
rm test
Expand Down
2 changes: 1 addition & 1 deletion unittests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ $CHECK_GCC
all:
dune build -p unittests @install
dune install -p unittests --prefix=./
$CXX_INC -Wall -Wextra -std=gnu++11 -DRTMLIB_ENABLE_MAP_SORT $DEBUG -I"$(path "$(pwd)/../rtmlib2/src")" cpptest.cpp -o cpptest -pthread -latomic
$CXX_INC -Wall -Wextra -std=gnu++11 -DRTMLIB_ENABLE_MAP_SORT $DEBUG -I\"$(pwd)/../rtmlib2/src\" cpptest.cpp -o cpptest -pthread -latomic
clean:
ocamlbuild -clean
Expand Down

0 comments on commit c22fe28

Please sign in to comment.