1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/usr/bin/python -u # # Copyright 2009 Canonical Ltd. This software is licensed under the # GNU Affero General Public License version 3 (see the file LICENSE). """Update the sourcecode managed in sourcecode/.""" import os import sys sys.path.append( os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib')) from devscripts import sourcecode if __name__ == '__main__': sys.exit(sourcecode.main(sys.argv)) |