Remove deploy-all

Now that's just asking for trouble
This commit is contained in:
Salt 2021-02-04 22:31:23 -06:00
parent 38947e2468
commit bc68f48e82
2 changed files with 0 additions and 3 deletions

View File

@ -38,5 +38,4 @@ Included within are also a handful of management scripts.
| script | description | | script | description |
| --- | --- | | --- | --- |
| `bootleg-stow` | USE AT YOUR OWN RISK. Tries its best to emulate Stow in an environment where it's not available. Should at the very least allow you to install and update these dotfiles without too much headache. | | `bootleg-stow` | USE AT YOUR OWN RISK. Tries its best to emulate Stow in an environment where it's not available. Should at the very least allow you to install and update these dotfiles without too much headache. |
| `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, desktop-common, 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. | | `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. |

View File

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