develop#zsh: fix i function

This commit is contained in:
Timothy DeHerrera 2019-12-17 15:58:40 -07:00
parent 2bad76157e
commit f5b89dc39a
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -4,9 +4,9 @@ NC='\033[0m'
# needs one arguement or exit
[[ -n $2 || -z $1 ]] && {
print -u2 \
"${RED}takes one arguement${NC}"
"${RED}error:${NC} takes exactly one package as an arguement"
exit 1
return 1
}
nix profile install "nixpkgs#$1"