From 9f31eb8183e63ebc4ccc362406a87a496b3c2e8c Mon Sep 17 00:00:00 2001 From: blallo Date: Fri, 19 May 2023 22:12:53 +0200 Subject: [PATCH] Updating update scripts --- update_antidote.sh | 1 + update_fzf.sh | 4 ++-- update_grml_zsh.sh | 5 ++++- update_pipenv.sh | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/update_antidote.sh b/update_antidote.sh index 6e7d159..4af6324 100755 --- a/update_antidote.sh +++ b/update_antidote.sh @@ -1,4 +1,5 @@ #!/usr/bin/env zsh +echo "=> Updating antidote" ! [[ -z $DEBUG ]] && set -x diff --git a/update_fzf.sh b/update_fzf.sh index ca6c5fc..2a0194a 100755 --- a/update_fzf.sh +++ b/update_fzf.sh @@ -1,5 +1,5 @@ #!/usr/bin/env zsh -echo "Updating fzf" +echo "=> Updating fzf" currpath=$(realpath $PWD) @@ -16,4 +16,4 @@ if [ ! -d ~/.config/zsh ]; then fi cp ${currpath}/fzf.zsh ${HOME}/.config/zsh/ -# vim: set ft=sh et sw=0 ts=2 sts=0: +# vim: set ft=zsh et sw=0 ts=2 sts=0: diff --git a/update_grml_zsh.sh b/update_grml_zsh.sh index 202a8e6..23f6d2f 100755 --- a/update_grml_zsh.sh +++ b/update_grml_zsh.sh @@ -1,7 +1,10 @@ -#!/bin/sh +#!/usr/bin/env zsh +echo "=> Updating grml zsh config" curl --fail \ -L \ --output /tmp/.zshrc.tty \ https://git.grml.org/f/grml-etc-core/etc/zsh/zshrc \ && mv /tmp/.zshrc.tty .zshrc.tty + +# vim: set ft=zsh et sw=0 ts=2 sts=0: diff --git a/update_pipenv.sh b/update_pipenv.sh index 46c5ed9..f2a17e5 100755 --- a/update_pipenv.sh +++ b/update_pipenv.sh @@ -1,5 +1,5 @@ #!/usr/bin/env zsh -echo "Updating pipenv completion" +echo "=> Updating pipenv completion" currpath=$(realpath $PWD) @@ -19,4 +19,4 @@ if [ ! -d ~/.config/zsh ]; then fi cp ${currpath}/compiled/pipenv.zsh ~/.config/zsh/pipenv.zsh -# vim: set ft=sh et sw=0 ts=2 sts=0: +# vim: set ft=zsh et sw=0 ts=2 sts=0: