Skip to content

Commit 068f27e

Browse files
Varun Purifacebook-github-bot
authored andcommitted
Fix bad chmod mode
Summary: As titiled Created from CodeHub with https://fburl.com/edit-in-codehub Reviewed By: youngvanster, pssrawat Differential Revision: D68514256 fbshipit-source-id: 3c830709bd95a12950fc8cc2164c18365ff14753
1 parent a50ee22 commit 068f27e

File tree

1 file changed

+1
-1
lines changed
  • benchmarking/platforms/android

1 file changed

+1
-1
lines changed

benchmarking/platforms/android/adb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def run(self, *args, **kwargs):
2828
adb = self._addADB()
2929
return super(ADB, self).run(adb, *args, **kwargs)
3030

31-
def push(self, src, tgt, chmod="+755"):
31+
def push(self, src, tgt, chmod="755"):
3232
# Always remove the old file before pushing the new file
3333
self.deleteFile(tgt)
3434
res = self.run("push", src, tgt)

0 commit comments

Comments
 (0)