Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: third_party/WebKit/Source/devtools/scripts/unzip.py

Issue 2413563002: DevTools: add "npm test" to run tests by fetching content shells (Closed)
Patch Set: nits Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/env python
dgozman 2016/10/17 19:13:51 Is there a node.js equivalent?
chenwilliam 2016/10/18 18:13:18 From what I researched, there's no built-in node.j
2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import sys
7 import zipfile
8
9 if len(sys.argv) < 3:
10 print('Usage: {} <src> <dest>'.format(sys.argv[0]))
11 print(' <src> full path to zip file to be extracted')
12 print(' <dest> full path to destination folder')
13 sys.exit(1)
14
15 src = sys.argv[1]
16 dest = sys.argv[2]
17
18 zip_ref = zipfile.ZipFile(src, 'r')
19 zip_ref.extractall(dest)
20 zip_ref.close()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698