diff options
author | Tyler Davis <tydavis@gmail.com> | 2020-04-19 13:45:26 -0700 |
---|---|---|
committer | Tyler Davis <tydavis@gmail.com> | 2020-04-19 13:45:26 -0700 |
commit | 2f26393ee7662465f48e145142c3676eda12475d (patch) | |
tree | 1d5e5fe201b339d2f1339c066a763f32990d5123 /.bin | |
parent | 99daa29329bf68b5254232f7b9de5578c0a7bb82 (diff) | |
download | dotfiles-2f26393ee7662465f48e145142c3676eda12475d.tar.gz dotfiles-2f26393ee7662465f48e145142c3676eda12475d.zip |
fix(update): make work changes happen every run
Diffstat (limited to '.bin')
-rwxr-xr-x | .bin/allupdate | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.bin/allupdate b/.bin/allupdate index e879f9c..945d6c4 100755 --- a/.bin/allupdate +++ b/.bin/allupdate @@ -8,11 +8,15 @@ case "$OSTYPE" in ;; linux*) sudo pacman -Syu; - fd -H -t d -E mod -E vendor '.git$' ~/code/work -x bash -c "cd {//}; git config user.email tyler.m.davis@nordstrom.com; git config http.cookiefile /home/tydavis/.gitcookie-work; " ; ;; esac +# Git config for work +fd -H -t d -E mod -E vendor '.git$' ~/code/work -x bash -c "cd {//}; git config user.email tyler.m.davis@nordstrom.com; git config http.cookiefile /home/tydavis/.gitcookie-work; " ; + +# Update all repos fd -H -t d -E mod -E vendor '.git$' ~/ -x bash -c "cd {//}; ~/.bin/fetchgit;" ; +# Update Gcloud gcloud components update -q; # Do work updates, then add to our own list |