mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-24 00:09:22 +00:00
10 lines
218 B
Bash
Executable File
10 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d "${HOME}/.dotfiles" ]; then
|
|
cd $HOME/.dotfiles
|
|
git reset --hard && git pull
|
|
fi
|
|
if [ -d "${HOME}/.dotfiles-private" ]; then
|
|
cd $HOME/.dotfiles-private
|
|
git reset --hard && git pull
|
|
fi |