13 lines
224 B
Text
Executable file
13 lines
224 B
Text
Executable file
os="$(uname)"
|
|
|
|
case "$os" in
|
|
Darwin)
|
|
$HOME/.config/nixpkgs/home/programs/nvim/update-plugins.sh
|
|
;;
|
|
Linux)
|
|
/etc/nixos/home/programs/nvim/update-plugins.sh
|
|
;;
|
|
*)
|
|
echo "Unsupported OS"
|
|
exit 1
|
|
esac
|