diff --git a/build_cmake_pybullet_double.sh b/build_cmake_pybullet_double.sh index ca77a9f1c..c1a7d403a 100755 --- a/build_cmake_pybullet_double.sh +++ b/build_cmake_pybullet_double.sh @@ -5,11 +5,11 @@ if [ -e CMakeCache.txt ]; then fi mkdir -p build_cmake cd build_cmake -cmake -DBUILD_PYBULLET=ON -DBUILD_PYBULLET_NUMPY=OFF -DUSE_DOUBLE_PRECISION=ON -DCMAKE_BUILD_TYPE=Release .. -make -j $(command nproc 2>/dev/null || echo 12) +cmake -DBUILD_PYBULLET=ON -DBUILD_PYBULLET_NUMPY=OFF -DUSE_DOUBLE_PRECISION=ON -DCMAKE_BUILD_TYPE=Release .. || exit 1 +make -j $(command nproc 2>/dev/null || echo 12) || exit 1 cd examples cd pybullet if [ -e pybullet.dylib ]; then ln -f -s pybullet.dylib pybullet.so fi - +echo "Completed build of Bullet."