aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rwxr-xr-xpass/install.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/pass/install.sh b/pass/install.sh
index 8a8a054..f91caf4 100755
--- a/pass/install.sh
+++ b/pass/install.sh
@@ -16,11 +16,11 @@ if [ ! -d "$store" ]; then
else
printf "%s: Syncing password-store\n" "$0"
- git remote update origin
+ git -C "$store" remote update origin
- LOCAL=$(git rev-parse @)
- REMOTE=$(git rev-parse '@{u}')
- BASE=$(git merge-base @ '@{u}')
+ LOCAL=$(git -C "$store" rev-parse @)
+ REMOTE=$(git -C "$store" rev-parse '@{u}')
+ BASE=$(git -C "$store" merge-base @ '@{u}')
if [ "$BASE" != "$REMOTE" ]; then
git -C "$store" pull