mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 10:51:58 -05:00
Clean the code up (indentation)
This commit is contained in:
parent
0a37d51b4e
commit
d5c19fa56e
1 changed files with 7 additions and 6 deletions
13
install.sh
13
install.sh
|
@ -56,19 +56,20 @@ if [[ `uname` == "Darwin" ]]; then
|
|||
wget "https://downloads.sourceforge.net/project/mingw-w64/Toolchains targetting Win32/Automated Builds/$mingw_tar" --output-document $cachedir/$mingw_tar
|
||||
fi
|
||||
if [[ ! -d $ming_path ]]; then
|
||||
|
||||
pushd /usr/local/
|
||||
sudo mkdir $mingw_name
|
||||
sudo mkdir $mingw_name
|
||||
popd
|
||||
|
||||
echo "Extracting contents of $mingw_tar to $mingw_path"
|
||||
echo "Don't forget to add $mingw_path to your PATH variable!"
|
||||
sudo tar -xyf $cachedir/$mingw_tar -C $mingw_path
|
||||
#sudo gnutar -xjf $cachedir/$mingw_tar -C $mingw_path --no-same-permissions
|
||||
|
||||
pushd /usr/local
|
||||
sudo chmod 755 $mingw_name
|
||||
pushd $mingw_name
|
||||
sudo find . -type d -exec chmod 755 {} \;
|
||||
popd
|
||||
sudo chmod 755 $mingw_name
|
||||
pushd $mingw_name
|
||||
sudo find . -type d -exec chmod 755 {} \;
|
||||
popd
|
||||
popd
|
||||
fi
|
||||
elif [[ `uname` == "Linux" ]]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue