diff options
-rwxr-xr-x | bootstrap.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index a3d18e5637..9c4c467753 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -20,7 +20,7 @@ cat /etc/hosts SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" if [ -f "/etc/redhat-release" ]; then - ${SCRIPT_DIR}/bootstrap-centos.sh + ${SCRIPT_DIR}/bootstrap-centos.sh $@ else - ${SCRIPT_DIR}/bootstrap-ubuntu.sh + ${SCRIPT_DIR}/bootstrap-ubuntu.sh $@ fi |