mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 20:50:31 -04:00
10 lines
271 B
Bash
10 lines
271 B
Bash
#!/bin/sh
|
|
|
|
# workaround Chromium bug https://bugs.chromium.org/p/chromium/issues/detail?id=918234
|
|
if [ "$DBUS_SESSION_BUS_ADDRESS" = "" ]; then
|
|
export DBUS_SESSION_BUS_ADDRESS="autolaunch:"
|
|
fi
|
|
|
|
export GIT_EXEC_PATH=%%LOCALBASE%%/bin/git
|
|
|
|
exec %%DATADIR%%/Logseq "$@"
|