1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Ludovico Cavedon <ludovico.cavedon@gmail.com>
Date: Sat, 5 Dec 2020 18:07:26 +0100
Subject: provide config file with installation paths
Co-Authored-By: Max Bowsher <maxb@f2s.com>
Forwarded: not-needed
---
tortoisehg/util/config.py | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 tortoisehg/util/config.py
diff --git a/tortoisehg/util/config.py b/tortoisehg/util/config.py
new file mode 100644
index 0000000..8d59a6f
--- /dev/null
+++ b/tortoisehg/util/config.py
@@ -0,0 +1,5 @@
+bin_path = "/usr/bin"
+license_path = "/usr/share/common-licenses/GPL-2"
+locale_path = "/usr/share/locale"
+icon_path = "/usr/share/pixmaps/tortoisehg/icons"
+nofork = True
|