6a6de9074c
Use force as an argument with ./install to force a re-installation of simple-vpn (Don't forget to press y and enter when prompted\! )
9 lines
252 B
Bash
Executable File
9 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
echo "[info] Preparing to setup dependencies"
|
|
./install-dependencies $1
|
|
echo "[info] Preparing to build projects from source"
|
|
./build
|
|
echo "[info] Preparing to install components"
|
|
./install-components
|
|
echo "[info] Install process finished"
|