Skip to content

Commit 74aed87

Browse files
committed
Tidy - remove trailing whitespace
1 parent 757eec9 commit 74aed87

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

app/linux-prebuild.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
set -e # Quit script on error
44
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
55

6-
if [ ! -d "vcpkg" ]; then
6+
if [ ! -d "vcpkg" ]; then
77
echo "Cloning vcpkg"
88
git clone --single-branch --branch master https://github.com/microsoft/vcpkg.git vcpkg
99
fi
1010

1111
if [ ! -f "vcpkg/vcpkg" ]; then
1212
echo "Building vcpkg"
13-
cd vcpkg
13+
cd vcpkg
1414
./bootstrap-vcpkg.sh -disableMetrics
15-
cd ${SCRIPT_DIR}
15+
cd ${SCRIPT_DIR}
1616
fi
1717

1818
cd vcpkg

app/mac-prebuild.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
55
# Check to see if we have a bundled Ruby and if so, use that
66
# Otherwise use system ruby
77
# Build vcpkg
8-
if [ ! -d "vcpkg" ]; then
8+
if [ ! -d "vcpkg" ]; then
99
echo "Cloning vcpkg"
1010
git clone --single-branch --branch master https://github.com/microsoft/vcpkg.git vcpkg
1111
fi
1212

1313
if [ ! -f "vcpkg/vcpkg" ]; then
1414
echo "Building vcpkg"
15-
cd vcpkg
15+
cd vcpkg
1616
./bootstrap-vcpkg.sh -disableMetrics
17-
cd ${SCRIPT_DIR}
17+
cd ${SCRIPT_DIR}
1818
fi
1919

2020
triplet=(x64-osx)

app/win-prebuild.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ if not exist "vcpkg\" (
99
)
1010

1111
if not exist "vcpkg\vcpkg.exe" (
12-
cd vcpkg
12+
cd vcpkg
1313
echo Building vcpkg
1414
call bootstrap-vcpkg.bat -disableMetrics
1515
cd %~dp0
1616
)
1717

1818
cd vcpkg
19-
echo Installing Libraries
19+
echo Installing Libraries
2020
vcpkg install kissfft fmt crossguid sdl2 gl3w reproc gsl-lite concurrentqueue platform-folders catch2 --triplet x64-windows-static-md --recurse
2121

2222
cd %~dp0

0 commit comments

Comments
 (0)