mirror of
https://github.com/glest/glest-source.git
synced 2025-08-29 19:00:07 +02:00
10 lines
198 B
Bash
10 lines
198 B
Bash
#!/bin/sh
|
|
echo
|
|
echo "Initializing Glest setup..."
|
|
currentDir=$PWD
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
|
cd $DIR
|
|
sh ./build-deps.sh
|
|
echo
|
|
sudo sh ./build.sh
|
|
cd $currentDir |