aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pass/install.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-02-18 00:54:18 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-02-18 00:54:18 -0600
commit02339729def6aa67522ae12f2ffa9e9cecfd459e (patch)
tree1f9150edb28b55acdd68dd6cf5fdf36f01436c7e /pass/install.sh
parent6fb4ca724aa3b9214a45fa07472d789db0598626 (diff)
fix(pass): only fetch origin on update
Diffstat (limited to 'pass/install.sh')
-rwxr-xr-xpass/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pass/install.sh b/pass/install.sh
index 2ab3f9e..8a8a054 100755
--- a/pass/install.sh
+++ b/pass/install.sh
@@ -16,7 +16,7 @@ if [ ! -d "$store" ]; then
else
printf "%s: Syncing password-store\n" "$0"
- git remote update
+ git remote update origin
LOCAL=$(git rev-parse @)
REMOTE=$(git rev-parse '@{u}')