Skip to content

Commit

Permalink
Fixed: Proper path escaping in make_single_header.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
richardbiely committed Nov 30, 2024
1 parent f85df62 commit 923acd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make_single_header.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
echo off

set PATH_TO_AMALGAMATE_DIR="%1"
set PATH_TO_AMALGAMATE=%PATH_TO_AMALGAMATE_DIR%\\amalgamate
set "PATH_TO_AMALGAMATE_DIR=%1"
set "PATH_TO_AMALGAMATE=%PATH_TO_AMALGAMATE_DIR%/amalgamate"
del single_include/gaia.h
%PATH_TO_AMALGAMATE% -i include -w "*.cpp;*.h;*.hpp;*.inl" include/gaia.h single_include/gaia.h
"%PATH_TO_AMALGAMATE%" -i include -w "*.cpp;*.h;*.hpp;*.inl" include/gaia.h single_include/gaia.h

0 comments on commit 923acd0

Please sign in to comment.