2012-03-29 21:08:43 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2012-11-04 08:00:06 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2012-03-29 21:08:43 +00:00
|
|
|
import subprocess
|
|
|
|
|
2013-07-18 13:43:19 +00:00
|
|
|
repo = "https://dvcs.w3.org/hg/resources"
|
2012-03-29 21:08:43 +00:00
|
|
|
dest = "resources-upstream"
|
2013-07-18 13:43:19 +00:00
|
|
|
files = ["testharness.js", "testharness.css", "idlharness.js", "WebIDLParser.js"]
|
2012-03-29 21:08:43 +00:00
|
|
|
|
2013-07-18 13:43:19 +00:00
|
|
|
subprocess.check_call(["hg", "clone", repo, dest])
|
2012-03-29 21:08:43 +00:00
|
|
|
for f in files:
|
2013-07-18 13:43:19 +00:00
|
|
|
subprocess.check_call(["cp", "%s/%s" % (dest, f), f])
|
|
|
|
subprocess.check_call(["hg", "add", f])
|
2013-02-25 20:46:50 +00:00
|
|
|
subprocess.check_call(["rm", "-rf", dest])
|
|
|
|
|