Skip to content

Commit

Permalink
Move delete function to util.py
Browse files Browse the repository at this point in the history
This makes it easier to reuse in other places.
  • Loading branch information
aneeshusa committed Apr 18, 2017
1 parent 7413c71 commit b1824f7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
8 changes: 1 addition & 7 deletions python/servo/package_commands.py
Expand Up @@ -33,13 +33,7 @@
is_windows,
get_browserhtml_path,
)


def delete(path):
try:
os.remove(path) # Succeeds if path was a file
except OSError: # Or, if path was a directory...
shutil.rmtree(path) # Remove it and all its contents.
from servo.util import delete


def otool(s):
Expand Down
18 changes: 13 additions & 5 deletions python/servo/util.py
Expand Up @@ -10,16 +10,24 @@
from __future__ import absolute_import, print_function, unicode_literals

import os
import os.path as path
import os.path
import platform
import sys
import shutil
from socket import error as socket_error
import StringIO
import sys
import tarfile
import zipfile
import urllib2


def delete(path):
if os.path.isdir(path) and not os.path.islink(path):
shutil.rmtree(path)
else:
os.remove(path)


def host_platform():
os_type = platform.system().lower()
if os_type == "linux":
Expand Down Expand Up @@ -126,7 +134,7 @@ def download_bytes(desc, src):
def download_file(desc, src, dst):
tmp_path = dst + ".part"
try:
start_byte = path.getsize(tmp_path)
start_byte = os.path.getsize(tmp_path)
with open(tmp_path, 'ab') as fd:
download(desc, src, fd, start_byte=start_byte)
except os.error:
Expand All @@ -143,8 +151,8 @@ def extract(src, dst, movedir=None):

if movedir:
for f in os.listdir(movedir):
frm = path.join(movedir, f)
to = path.join(dst, f)
frm = os.path.join(movedir, f)
to = os.path.join(dst, f)
os.rename(frm, to)
os.rmdir(movedir)

Expand Down

0 comments on commit b1824f7

Please sign in to comment.