8d93de9c0d7e33a12695ef8c4a0314b87ce026d0
[portage.git] / bin / emirrordist
1 #!/usr/bin/python
2 # Copyright 2013 Gentoo Foundation
3 # Distributed under the terms of the GNU General Public License v2
4
5 import sys
6
7 import portage
8 portage._internal_caller = True
9 portage._disable_legacy_globals()
10 from portage._emirrordist.main import emirrordist_main
11
12 if __name__ == "__main__":
13         sys.exit(emirrordist_main(sys.argv[1:]))