diff options
| author | June McEnroe <june@causal.agency> | 2020-01-15 18:13:06 -0500 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2020-01-15 18:13:06 -0500 |
| commit | 9ad491cc51210d45c80b91b48735dbd00b93ede8 (patch) | |
| tree | 910b8ddda1f415b2d3d7b2bb66142a019fcab723 | |
| parent | Remove gpg from install.sh (diff) | |
| download | src-9ad491cc51210d45c80b91b48735dbd00b93ede8.tar.gz src-9ad491cc51210d45c80b91b48735dbd00b93ede8.zip | |
Move mksh to Linux-only
Elsewhere I use 1sh.
| -rw-r--r-- | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.sh b/install.sh index 010c9082..d339f0ae 100644 --- a/install.sh +++ b/install.sh @@ -1,11 +1,11 @@ #!/bin/sh set -eu -pkgAny='curl htop mksh sl the_silver_searcher tree' +pkgAny='curl htop sl the_silver_searcher tree' pkgDarwin="${pkgAny}" pkgFreeBSD="${pkgAny} ddate neovim" pkgNetBSD="${pkgAny} vim" -pkgLinux="${pkgAny} bc ctags gdb neovim openssh" +pkgLinux="${pkgAny} bc ctags gdb mksh neovim openssh" pkgsrcTag='20171103' neovimTag='v0.4.2' |