11 lines
298 B
Bash
Executable file
11 lines
298 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
home_expression='$HOME/.nvs';
|
|
export NVS_HOME="$(bash -c echo $home_expression)";
|
|
git clone https://github.com/jasongin/nvs "$NVS_HOME";
|
|
|
|
NVS_HOME="$home_expression" \
|
|
NVS_PATH="$NVS_HOME" \
|
|
. "../../Config/NVS/install.sh";
|
|
|
|
popd > /dev/null;
|