mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
11 lines
238 B
Bash
Executable file
11 lines
238 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
DOTFILES_PATH="${0:h}"
|
|
cd "$DOTFILES_PATH" || exit 1
|
|
|
|
git pull --rebase --stat origin master
|
|
git submodule update --init --recursive --remote --progress
|
|
|
|
DISABLE_AUTO_UPDATE=true
|
|
source "zsh/zgen/zgen.zsh"
|
|
zgen update
|