diff options
| author | Jeff Carr <[email protected]> | 2023-03-09 20:52:53 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-03-09 20:52:53 -0600 |
| commit | 3e166ab5d652e50e98ec0b097504148d4b03921b (patch) | |
| tree | da9b9dc871d744eaa04951f0e086d1cf810746ca | |
| parent | 6dcf4856ab6909205d16fa53152da83bbcf01104 (diff) | |
more checks
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,11 @@ + +# git clone https://git.wit.org/wit/bash.git ~/.config/wit/ && cd ~/.config/wit && make new-install + +# git clone https://git.wit.org/wit/bash.git ~/.config/wit/ +# cd ~/.config/wit/ +# git config pull.rebase false +# make new-install + all: @echo @echo is this a new install? @@ -11,8 +19,12 @@ new-install: git pull make setup-bash make setup-vim +ifeq ($(USER),root) make setup-apt make go +else + echo you are not root so you can not install packages +endif setup-bash: ifeq ($(WIT_BASH),true) |
