4 lines
86 B
Bash
4 lines
86 B
Bash
|
#!/bin/bash
|
||
|
if [ -f ~/git/dotfiles ] ; then
|
||
|
(cd ~/git/dotfiles && git pull)
|
||
|
fi
|