/usr/bin/git-cola is in git-cola 2.10-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #!/usr/bin/python3
# -*- python-mode -*-
"""git-cola: The highly caffeinated Git GUI
"""
from __future__ import division, absolute_import, unicode_literals
import os
import sys
__copyright__ = """
Copyright (C) 2007-2016 David Aguilar and contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
"""
def setup_environment():
"""Provides access to the cola modules"""
abspath = os.path.abspath
dirname = os.path.dirname
join = os.path.join
realpath = os.path.realpath
# Try to detect where it is run from and set prefix and the search path.
# It is assumed that the user installed Cola using the --prefix= option
python2 = sys.version_info[0] == 2
prefix = dirname(dirname(realpath(abspath(__file__))))
if python2:
cola_mod = join(prefix, str('cola'), str('__init__.py'))
install_lib = join(prefix, str('share'), str('git-cola'), str('lib'))
else:
# Look for modules in the source or install trees
cola_mod = join(prefix, 'cola', '__init__.py')
install_lib = join(prefix, 'share', 'git-cola', 'lib')
if os.path.exists(cola_mod):
# Source tree
sys.path.insert(1, prefix)
else:
# Install tree
sys.path.insert(1, install_lib)
setup_environment()
from cola.main import main # pylint: disable=wrong-import-position
if __name__ == '__main__':
sys.exit(main())
|