Hi all,
TL;DR; Is there a way to download a single file from the chromium repository over plain old HTTP, not using svn? ViewVC and gitiles seem like they might provide a way to do this, but I can't find it.
Background:
I'm working on a
script to simplify the setup when working remotely on Android development. This allows users to install APKs, run tests, etc on a local device while working on a remote machine. As a result, the script will actually be run from a computer without a chromium checkout. The ideal setup would be: developer copies the script to their laptop once and the script auto-updates itself based on the latest version checked into chromium.
To auto-update, the script needs to download its newest version from chromium. This could be done with svn export; the downside being that svn may not be installed and credentials for
chromium.org probably are configured. If there's a lower friction way to do this -- downloading the file with curl over HTTP, for example -- that would be ideal.
Thanks,
Newton