mirror of
https://github.com/zplug/zplug
synced 2025-04-05 23:29:10 +02:00
34 lines
545 B
Bash
34 lines
545 B
Bash
#!/usr/bin/env zsh
|
|
# Description:
|
|
# Remove the cache file
|
|
|
|
local arg
|
|
|
|
while (( $# > 0 ))
|
|
do
|
|
arg="$1"
|
|
case "$arg" in
|
|
-*|--*)
|
|
__zplug::core::options::unknown "$arg"
|
|
return $status
|
|
;;
|
|
"")
|
|
# Invalid
|
|
return 1
|
|
;;
|
|
*/*)
|
|
# Unexpect
|
|
return 1
|
|
;;
|
|
*)
|
|
return 1
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
rm -rf \
|
|
"$ZPLUG_CACHE_DIR" \
|
|
"$ZPLUG_HOME/zcompdump" \
|
|
"$ZPLUG_HOME/zcompdump.zwc"
|