aboutsummaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-07-12 13:45:23 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-07-12 13:48:13 +0200
commit8a084f36bd0136e1c674ed3aa225d07d4125938b (patch)
treed88d764edc90e0629285fbb62357b4f4f8fdd438 /usr
parentcd40f6dd222f4b8fefc9bdf95187cb568a97f096 (diff)
downloadlbsd-8a084f36bd0136e1c674ed3aa225d07d4125938b.tar.gz
Fix gg command
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/bin/gg4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/local/bin/gg b/usr/local/bin/gg
index 3526088..1511fe5 100755
--- a/usr/local/bin/gg
+++ b/usr/local/bin/gg
@@ -1,2 +1,4 @@
#!/bin/sh
-exec git --git-dir=/.git --work-tree=/ "$@"
+export GIT_DIR=/.git
+export GIT_WORK_TREE=/
+exec git "$@"