gitignore: Add ChangeLog to .gitignore
[stgit.git] / stg-dbg
blob546dc7e4c40e2e15c0be4b0360d067f5f1d9a6c7
1 #!/usr/bin/env python2
2 # -*- python-mode -*-
3 """Takes care of starting the Init function
4 """
6 __copyright__ = """
7 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License version 2 as
11 published by the Free Software Foundation.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 """
23 import sys, os, pdb
25 # Try to detect where it is run from and set prefix and the search path.
26 # It is assumed that the user installed StGIT using the --prefix= option
27 prefix, bin = os.path.split(sys.path[0])
29 if bin == 'bin' and prefix != sys.prefix:
30     sys.prefix = prefix
31     sys.exec_prefix = prefix
33     major, minor = sys.version_info[0:2]
34     local_path = [os.path.join(prefix, 'lib', 'python'),
35                   os.path.join(prefix, 'lib', 'python%s.%s' % (major, minor)),
36                   os.path.join(prefix, 'lib', 'python%s.%s' % (major, minor),
37                                'site-packages')]
38     sys.path = local_path + sys.path
40 from stgit.main import main
42 if __name__ == '__main__':
43     pdb.run('main()')