blob: 8d46c2ad276e9dafe3796ccb14052c80295ce3a0 [file] [log] [blame]
Jack Jansenb54a6ce2002-11-15 00:04:09 +00001#!/usr/bin/env python
2# This file is meant as an executable script for running applets.
3# BuildApplet will use it as the main executable in the .app bundle if
4# we are not running in a framework build.
5
6import os
7import sys
8for name in ["__rawmain__.py", "__rawmain__.pyc", "__main__.py", "__main__.pyc"]:
Jack Jansen0ae32202003-04-09 13:25:43 +00009 realmain = os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])),
10 "Resources", name)
11 if os.path.exists(realmain):
12 break
Jack Jansenb54a6ce2002-11-15 00:04:09 +000013else:
Jack Jansen0ae32202003-04-09 13:25:43 +000014 sys.stderr.write("%s: cannot find applet main program\n" % sys.argv[0])
15 sys.exit(1)
Jack Jansenb54a6ce2002-11-15 00:04:09 +000016sys.argv.insert(1, realmain)
17os.execve(sys.executable, sys.argv, os.environ)