Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(570)

Side by Side Diff: scripts/travis-checkout.sh

Issue 1873133003: Add travis CI config (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« scripts/travis-build.sh ('K') | « scripts/travis-build.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2 set -ex
3
vapier 2016/04/11 15:09:18 same comment here about using a main func so it's
Ted Mielczarek 2016/04/11 16:30:19 Done.
4 (cd; git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git)
5
6 PATH="$HOME/depot_tools:$PATH"
7
8 # Rename the source dir to match what gclient expects.
9 srcdir=`basename $TRAVIS_BUILD_DIR`
vapier 2016/04/11 15:09:18 please write instead: srcdir=$(basename "${TRAVI
Ted Mielczarek 2016/04/11 16:30:19 Done.
10 cd ${TRAVIS_BUILD_DIR}/..
vapier 2016/04/11 15:09:18 please quote it
Ted Mielczarek 2016/04/11 16:30:19 Done.
11 mv $srcdir src
vapier 2016/04/11 15:09:18 quote & use braces mv "${srcdir}" src
Ted Mielczarek 2016/04/11 16:30:19 Done.
12 gclient config --unmanaged https://github.com/google/breakpad.git
13 gclient sync
OLDNEW
« scripts/travis-build.sh ('K') | « scripts/travis-build.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698