diff options
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7,9 +7,10 @@ fi case "$1" in user) - git clone https://github.com/duskCoder/VimperatorrcBuilder.git tmp && + mod="mods/VimperatorrcBuilder" + git submodule update -i --remote "$mod" && ( - python tmp/example.py > user/.vimperatorrc + python "$mod/example.py" > "user/.vimperatorrc" ) rm -rf tmp echo "installing the user configuration..." |