From f371c43557174881396be3af24af37e74ff96f7f Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 19 Jan 2021 02:19:05 -0600 Subject: [PATCH] Add a deploy-all script --- README.md | 1 + deploy-all.sh | 2 ++ 2 files changed, 3 insertions(+) create mode 100755 deploy-all.sh diff --git a/README.md b/README.md index 0bfa97c2..c79b9d08 100644 --- a/README.md +++ b/README.md @@ -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. | diff --git a/deploy-all.sh b/deploy-all.sh new file mode 100755 index 00000000..f43b040f --- /dev/null +++ b/deploy-all.sh @@ -0,0 +1,2 @@ +#! /bin/sh +for file in *; do [ -d "$file" ] && stow "$file" --target="$HOME"; done