Skip to content

Commit

Permalink
PKGBUILD: Fix the error about build folder existing
Browse files Browse the repository at this point in the history
  • Loading branch information
LupertEverett authored and dpjudas committed Oct 9, 2024
1 parent 7b42cbf commit 2bb7600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sha512sums=('SKIP')

build() {
cd SurrealEngine
mkdir build
cd build
[[ -d build ]] && rm -rf build
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..

make -j 16
Expand Down

0 comments on commit 2bb7600

Please sign in to comment.