dotfiles/run_onchange_docker_completion.sh

11 lines
171 B
Bash
Raw Normal View History

#!/bin/sh
FILE="/usr/share/zsh/vendor-completions/_docker"
if [ -f "$FILE" ]; then
echo "Removing $FILE"
sudo rm "$FILE"
else
echo "$FILE does not exist"
fi