Fix path for binary strip invocation.

This commit is contained in:
casey langen 2023-01-20 19:10:04 -08:00
parent 1f60f7c1d8
commit 84ba3fa6b1

View File

@ -10,7 +10,7 @@ echo "[post-build] started..."
if [ "$CMAKE_BUILD_TYPE" = 'Release' ]; then if [ "$CMAKE_BUILD_TYPE" = 'Release' ]; then
echo "[post-build] BUILD_TYPE=${CMAKE_BUILD_TYPE}, stripping binaries" echo "[post-build] BUILD_TYPE=${CMAKE_BUILD_TYPE}, stripping binaries"
$CMAKE_CURRENT_SOURCE_DIR/script/strip-nix.sh $DIR $CMAKE_CURRENT_SOURCE_DIR/script/strip-nix.sh $CMAKE_CURRENT_SOURCE_DIR
else else
echo "[post-build] BUILD_TYPE=${CMAKE_BUILD_TYPE}, not stripping" echo "[post-build] BUILD_TYPE=${CMAKE_BUILD_TYPE}, not stripping"
fi fi