RecreateSKPs: Fix GoogleStorageDataStore.delete_path
BUG=skia:5843 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2423093002 Review-Url: https://codereview.chromium.org/2423093002
This commit is contained in:
parent
f489886915
commit
7787463668
@ -485,7 +485,7 @@ class GoogleStorageDataStore(DataStore):
|
||||
return True
|
||||
|
||||
def delete_path(self, path):
|
||||
subprocess.check_call(['gsutil', 'rm', '-r', path])
|
||||
subprocess.check_call(['gsutil', 'rm', '-r', '/'.join((self._url, path))])
|
||||
|
||||
def download_file(self, name, local_path):
|
||||
subprocess.check_call([
|
||||
|
Loading…
Reference in New Issue
Block a user