Clean up script indentation

This commit is contained in:
Matt Rubin 2016-12-09 13:06:24 -08:00
parent 778cf2b52e
commit 6ba47e317d
2 changed files with 6 additions and 6 deletions

View File

@ -129,7 +129,7 @@ build_scheme ()
if [ "$awkstatus" -eq "1" ]
then
# SDK not found, try for iphonesimulator.
sdkflags=(-sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 5")
sdkflags=(-sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 5")
# Determine whether the unit tests will run with iphonesimulator
run_xctool "${sdkflags[@]}" -scheme "$scheme" run-tests | parse_build
@ -139,7 +139,7 @@ build_scheme ()
if [ "$awkstatus" -ne "0" ]
then
# Unit tests will not run on iphonesimulator.
sdkflags=()
sdkflags=()
fi
fi

View File

@ -23,10 +23,10 @@ mkdir build
cd build
cmake -DBUILD_SHARED_LIBS:BOOL=OFF \
-DLIBSSH2_INCLUDE_DIRS:PATH=/usr/local/include/ \
-DBUILD_CLAR:BOOL=OFF \
-DTHREADSAFE:BOOL=ON \
..
-DLIBSSH2_INCLUDE_DIRS:PATH=/usr/local/include/ \
-DBUILD_CLAR:BOOL=OFF \
-DTHREADSAFE:BOOL=ON \
..
cmake --build .
product="libgit2.a"