Add a deploy-all script

This commit is contained in:
Salt 2021-01-19 02:19:05 -06:00
parent 967ffe1310
commit f371c43557
2 changed files with 3 additions and 0 deletions

View File

@ -38,4 +38,5 @@ Included within are also a handful of management scripts.
| script | description |
| --- | --- |
| `deploy-all.sh` | Deploys all packages. Note that I reserve the right to produce packages with conflicting contents, so in the future this may be refined to only deploy a specific subset of packages (base, vim, etc.). |
| `submodule-checkout-masters-and-update.sh` | For every submodule in the repo, checks out its master branch (instead of the exact commit specified in the base repo) and then pulls from upstream. Effectively, this updates any submodules in the repo, such as Vim plugins, themes, etc. |

2
deploy-all.sh Executable file
View File

@ -0,0 +1,2 @@
#! /bin/sh
for file in *; do [ -d "$file" ] && stow "$file" --target="$HOME"; done