From 8347be07aae940354bbdc0cd1fe5c12b2f0fa39d Mon Sep 17 00:00:00 2001 From: sprague_rick Date: Sun, 8 Sep 2024 02:12:30 -0400 Subject: [PATCH] update --- build.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.bash b/build.bash index c937bef..0fcb130 100755 --- a/build.bash +++ b/build.bash @@ -13,7 +13,7 @@ filename="${filename%.*}" mkdir -p "build/$filename" # Compile the C++ file -g++ -I /usr/include/eigen3 -o "build/$filename/$filename" "$1" +g++ -o "build/$filename/$filename" "$1" # Check if the compilation was successful if [ $? -eq 0 ]; then