From 54108868d75cbabafd5cb991679e03316a8df82a Mon Sep 17 00:00:00 2001 From: Fabian Klemp Date: Sun, 26 Oct 2014 01:05:21 +0200 Subject: [PATCH] Fixing typo and wrong path in build script. --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 0d67cb2..393d4c7 100755 --- a/build.sh +++ b/build.sh @@ -1,11 +1,12 @@ #!/bin/bash -currrentDir=$(pwd) +currentDir=$(pwd) #building bullet cd extern/bullet/ mkdir -p build +cd build cmake .. make -j5