diff --git a/.gitignore b/.gitignore index 8e5ce45e2d..492d9980f9 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.mod *.o build +bin diff --git a/build.bash b/build.bash index 7aea4bc7ea..ba39695ea4 100755 --- a/build.bash +++ b/build.bash @@ -74,5 +74,6 @@ if [[ -n $verbose ]]; then cmake_build_args+=(-v) fi -cmake -S . -B build "${cmake_args[@]}" -cmake --build build -j 4 "${cmake_build_args[@]}" +cmake -S . -B build "${cmake_args[@]}" &&\ +cmake --build build -j 4 "${cmake_build_args[@]}" &&\ +cmake --install build --prefix .