pull before updating script
This commit is contained in:
parent
4f6d8ff6c4
commit
5f28612db3
1 changed files with 10 additions and 8 deletions
18
update-home
18
update-home
|
@ -6,14 +6,6 @@ if ! test -d ~/.dotfiles; then
|
|||
git clone git@git.sr.ht:~jjanzen/.dotfiles ~/.dotfiles
|
||||
fi
|
||||
|
||||
if ! diff ~/.dotfiles/update-home ~/.local/bin/update-home; then
|
||||
cp ~/.dotfiles/update-home ~/.local/bin/update-home || exit 1
|
||||
echo Changes have been made to the update-home script.
|
||||
echo Running the new update-home script.
|
||||
~/.local/bin/update-home
|
||||
exit
|
||||
fi
|
||||
|
||||
# save the current working directory and move to the dotfiles repository
|
||||
CWD=$(pwd)
|
||||
cd ~/.dotfiles || exit
|
||||
|
@ -21,6 +13,16 @@ git stash
|
|||
git checkout main
|
||||
git pull --rebase
|
||||
|
||||
# Install new update-home script and run it instead of this
|
||||
if ! diff ~/.dotfiles/update-home ~/.local/bin/update-home; then
|
||||
cp ~/.dotfiles/update-home ~/.local/bin/update-home || exit 1
|
||||
echo Changes have been made to the update-home script.
|
||||
echo Running the new update-home script.
|
||||
~/.local/bin/update-home
|
||||
exit
|
||||
fi
|
||||
|
||||
# install config files
|
||||
find -- * -type f -name "*.org" | while read -r file; do
|
||||
echo Installing "${file}" configuration...
|
||||
# emacs --batch "${file}" -f package-initialize --eval '(org-babel-tangle)'
|
||||
|
|
Loading…
Add table
Reference in a new issue