Fixed linux permissions issue

This commit is contained in:
mathusummut
2018-11-10 14:21:25 +01:00
parent 39ae9e1b08
commit 1347a6ba06
2 changed files with 8 additions and 0 deletions

View File

@@ -4,6 +4,10 @@
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
# Copyright (c) 2011-2013 Mark Vejvoda under GNU GPL v3.0+
currentDir=$PWD
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd $DIR
./build-deps.sh
echo
./build-zg-nodeps.sh
cd $currentDir

View File

@@ -1,8 +1,12 @@
#!/bin/bash
echo
echo "Initializing ZetaGlest setup..."
currentDir=$PWD
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd $DIR
./clone-data.sh
echo
./pull.sh
echo
./build-zg.sh
cd $currentDir