Closed GoogleCodeExporter closed 9 years ago
This is due to the depot tools authentication change being deployed.
See
https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/K9cGObPZyyk
for details on how to authenticate from now on.
Original comment by kjellan...@google.com
on 20 Apr 2015 at 7:05
does it work for you? its not working for me with gcl on windows
gcl.py: error: no such option: -o
Original comment by fbarch...@chromium.org
on 20 Apr 2015 at 8:51
"gcl upload" is deprecated. libyuv is switching to git: http://crbug.com/476598.
Please use "git cl upload + git cl dcommit" workflow using git mirror:
$ git clone https://chromium.googlesource.com/external/libyuv/
$ git auto-svn
$ git checkout -b feature-branch
$ ... make changes ...
$ git commit
$ git cl upload
$ git cl dcommit
That being said, the following should work too (at least it works for me):
$ depot-tools-auth login webrtc-codereview.appspot.com
$ gcl upload <changename>
(gcl always uses default auth options, --oauth2 is now default).
Original comment by vadimsh@chromium.org
on 20 Apr 2015 at 10:28
fixed in r1375
depot-tools-auth login webrtc-codereview.appspot.com
Original comment by fbarch...@google.com
on 20 Apr 2015 at 11:12
Original issue reported on code.google.com by
fbarch...@chromium.org
on 20 Apr 2015 at 6:25