summaryrefslogtreecommitdiffstats
path: root/native_client_sdk
diff options
context:
space:
mode:
authorsbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 02:29:19 +0000
committersbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 02:29:19 +0000
commit25340f8a94d6fcb28730df5f7ed266a7ef8a26e1 (patch)
treefeefa3484a162678d6a5eefad48b1e6c03e90b54 /native_client_sdk
parentbfbcd39be6500efe6f1445aedd99ff10236105a7 (diff)
downloadchromium_src-25340f8a94d6fcb28730df5f7ed266a7ef8a26e1.zip
chromium_src-25340f8a94d6fcb28730df5f7ed266a7ef8a26e1.tar.gz
chromium_src-25340f8a94d6fcb28730df5f7ed266a7ef8a26e1.tar.bz2
Fix gsutil usage.
It it not legal to pass -a and -p to gsutil and -a alone works fine for our purposes. BUG= Review URL: https://chromiumcodereview.appspot.com/11195024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162889 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk')
-rwxr-xr-xnative_client_sdk/src/build_tools/update_nacl_manifest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/native_client_sdk/src/build_tools/update_nacl_manifest.py b/native_client_sdk/src/build_tools/update_nacl_manifest.py
index b624e23..4b05a00 100755
--- a/native_client_sdk/src/build_tools/update_nacl_manifest.py
+++ b/native_client_sdk/src/build_tools/update_nacl_manifest.py
@@ -216,8 +216,7 @@ class RealDelegate(Delegate):
self.Trace("Skipping upload: %s -> %s" % (src, dest))
return
- # -p ensures we keep permissions when copying "in-the-cloud".
- return self._RunGsUtil(stdin, 'cp', '-p', '-a', 'public-read', src, dest)
+ return self._RunGsUtil(stdin, 'cp', '-a', 'public-read', src, dest)
def Print(self, *args):
sys.stdout.write(' '.join(map(str, args)) + '\n')