blob: 2219894d29019a684f4779f8e49f0b35883ee51c (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
if [ "x$BASH_SOURCE" == "x" ]; then echo '$BASH_SOURCE not set'; exit 1; fi
DEV=$(cd -P "$(dirname "${BASH_SOURCE[0]}" )" && pwd)
"$DEV/installphp.sh"
"$DEV/installmw.sh"
"$DEV/start.sh"
|