Whitespace fix.

This commit is contained in:
Jason Felds
2015-09-06 08:40:37 -04:00
parent 02a443460e
commit e488674987
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/sh
set -e
# See if the cmake folder is empty.
if [! -d "$HOME/cmake/lib"]; then
if [ ! -d "$HOME/cmake/lib" ]; then
wget http://www.cmake.org/files/v3.3/cmake-3.3.1.tar.gz
tar -xzf cmake-3.3.1.tar.gz
cd cmake-3.3.1 && ./configure --prefix=$HOME/cmake && make && make install