summaryrefslogtreecommitdiff
path: root/morph
diff options
context:
space:
mode:
Diffstat (limited to 'morph')
-rwxr-xr-xmorph5
1 files changed, 4 insertions, 1 deletions
diff --git a/morph b/morph
index 0c0789d5..f55bce96 100755
--- a/morph
+++ b/morph
@@ -17,5 +17,8 @@
import morphlib
+import os.path
-morphlib.app.Morph(version=morphlib.__version__).run()
+app = morphlib.app.Morph(version=morphlib.__version__)
+app.__file__ = os.path.realpath(__file__)
+app.run()