ea07256545
Change-Id: I9b3f989397c4c36ab3717d1cca84841778881186
15 lines
287 B
Bash
Executable File
15 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
if [ -f $HOME/VirtualBox\ VMs/compass-server ];then
|
|
mkdir -p $HOME/VirtualBox VMs/compass-server
|
|
fi
|
|
|
|
if [ "$1" == "--recreate" ]; then
|
|
source destroy.sh
|
|
source first_run.sh
|
|
else
|
|
source run.sh
|
|
fi
|