Fix raw file url

This commit is contained in:
Frank Qing
2024-05-01 12:44:20 +08:00
parent ff76824283
commit 4fd09787a7
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ fi
# cp -f .zshrc ~/
# cp -f ezshrc.zsh ~/.config/ezsh/
echo -e "Downloaded the remote .zshrc configuration\n"
wget -q "https://git.miomio.moe/mio/easyzsh/rss/branch/master/.zshrc" -O ~/.zshrc
wget -q "https://git.miomio.moe/mio/easyzsh/raw/branch/master/.zshrc" -O ~/.zshrc
# mkdir -p ~/.config/ezsh/zshrc # PLACE YOUR ZSHRC CONFIGURATIONS OVER THERE
mkdir -p ~/.cache/zsh/ # this will be used to store .zcompdump zsh completion cache files which normally clutter $HOME

View File

@@ -1,6 +1,6 @@
#!/bin/bash
BASE_URL="https://git.miomio.moe/mio/easyzsh/rss/branch/master/zshrc"
BASE_URL="https://git.miomio.moe/mio/easyzsh/raw/branch/master/zshrc"
ZSH_CONFIGS_DIR="$HOME/.config/zshrc"
mkdir -p $ZSH_CONFIGS_DIR