summaryrefslogtreecommitdiffstats
path: root/bin/emirrordist
blob: 8d93de9c0d7e33a12695ef8c4a0314b87ce026d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python
# Copyright 2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

import sys

import portage
portage._internal_caller = True
portage._disable_legacy_globals()
from portage._emirrordist.main import emirrordist_main

if __name__ == "__main__":
	sys.exit(emirrordist_main(sys.argv[1:]))