7 lines
244 B
Bash
Executable file
7 lines
244 B
Bash
Executable file
#!/bin/bash
|
|
export NVS_HOME="$HOME/.nvs";
|
|
git clone https://github.com/jasongin/nvs "$NVS_HOME";
|
|
# shellcheck source=~/.nvs/nvs.sh
|
|
. "$NVS_HOME/nvs.sh" install;
|
|
bash -c 'exec bash -c "nvs add latest"';
|
|
bash -c 'exec bash -c "nvs link latest"';
|