зеркало из https://github.com/mozilla/gecko-dev.git
Bug 818615 - Release mozdevice 0.17 to m-c, r=jgriffin
This commit is contained in:
Родитель
278d48c0ea
Коммит
38cc2d1536
|
@ -209,7 +209,8 @@ class DeviceManagerADB(DeviceManager):
|
|||
try:
|
||||
localZip = tempfile.mktemp() + ".zip"
|
||||
remoteZip = remoteDir + "/adbdmtmp.zip"
|
||||
subprocess.check_output(["zip", "-r", localZip, '.'], cwd=localDir)
|
||||
subprocess.Popen(["zip", "-r", localZip, '.'], cwd=localDir,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
|
||||
self.pushFile(localZip, remoteZip)
|
||||
os.remove(localZip)
|
||||
data = self._runCmdAs(["shell", "unzip", "-o", remoteZip, "-d", remoteDir]).stdout.read()
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
import os
|
||||
from setuptools import setup
|
||||
|
||||
PACKAGE_VERSION = '0.16'
|
||||
PACKAGE_VERSION = '0.17'
|
||||
|
||||
# take description from README
|
||||
here = os.path.dirname(os.path.abspath(__file__))
|
||||
|
|
Загрузка…
Ссылка в новой задаче