diff options
| author | David Kaufmann <astra@ionic.at> | 2020-03-22 06:29:17 +0100 |
|---|---|---|
| committer | David Kaufmann <astra@ionic.at> | 2020-03-22 06:29:17 +0100 |
| commit | cc0dc5299fec92b67b960215a81988e01906a2ec (patch) | |
| tree | 38da3c60c374248132ddcdb121f397c552961517 /home/var/system/config-updater | |
| parent | 05d1bca84f789a7a0cff59689d6bc5e78e5df03e (diff) | |
| download | config-cc0dc5299fec92b67b960215a81988e01906a2ec.tar.gz | |
fix post-update
Diffstat (limited to 'home/var/system/config-updater')
| -rw-r--r-- | home/var/system/config-updater/post-update | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/home/var/system/config-updater/post-update b/home/var/system/config-updater/post-update index 701c9c8..ae77cf5 100644 --- a/home/var/system/config-updater/post-update +++ b/home/var/system/config-updater/post-update @@ -9,7 +9,8 @@ if ! [ -d $HOME/.oh-my-zsh ]; then fi rm -f .zshrc.pre-oh-my-zsh # BEGIN removed files from git e3fb79a...6c7ef44 (2020-03-22) -md5sum .muttrc | grep b12a8a14e58f07782d9a947f80107c83 && rm -f .muttrc -md5sum .Xresources | grep f919d32723cee7cbae00718131fbe703 && rm -f .Xresources -md5sum .zshrc.local | grep 8bcb00aa4de816bd158584f84feb3de2 && rm -f .zshrc.local +[ -r .muttrc ] && echo "b12a8a14e58f07782d9a947f80107c83 .muttrc" | md5sum --check --status && rm -f .muttrc +[ -r .muttrc ] && echo "0f08dc7968033fd14b9131acfb9074d8 .muttrc" | md5sum --check --status && rm -f .muttrc +[ -r .Xresources ] && echo "f919d32723cee7cbae00718131fbe703 .Xresources" | md5sum --check --status && rm -f .Xresources +[ -r .zshrc.local ] && echo "8bcb00aa4de816bd158584f84feb3de2 .zshrc.local" | md5sum --check --status && rm -f .zshrc.local # END removed files from git e3fb79a...6c7ef44 (2020-03-22) |
