mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 06:41:36 +00:00
18 lines
419 B
Bash
Executable File
18 lines
419 B
Bash
Executable File
#! /bin/bash -ex
|
|
|
|
DEST=/home/worker/source/goanna
|
|
|
|
test $GECKO_BASE_REPOSITORY # e.g. https://hg.mozilla.org/mozilla-central
|
|
test $GECKO_HEAD_REPOSITORY # e.g. https://hg.mozilla.org/try
|
|
test $GECKO_HEAD_REF # <cset>
|
|
test $GECKO_HEAD_REV # <cset>
|
|
|
|
tc-vcs checkout $DEST \
|
|
$GECKO_BASE_REPOSITORY \
|
|
$GECKO_HEAD_REPOSITORY \
|
|
$GECKO_HEAD_REV \
|
|
$GECKO_HEAD_REF
|
|
|
|
echo "At revision: $(tc-vcs revision $DEST)"
|
|
cd $DEST
|