contrib/vagrant/provision.sh
author Matt Harbison <matt_harbison@yahoo.com>
Sun, 09 Apr 2017 00:10:54 -0400
changeset 31850 f0d719e513fc
parent 21874 8da01b6e7b49
permissions -rw-r--r--
templatekw: clarify the result of {latesttag} when no tag exists My initial expectation was that the list would be empty, and therefore detectable with {if()}. The map for {latesttag()} is populated with real values in this case (except {tag}), so it probably doesn't make any sense to change this to an empty list.

#!/bin/sh
# This scripts is used to install dependencies for
# testing Mercurial. Mainly used by Vagrant (see
# Vagrantfile for details).

export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y -q python-dev unzip
# run-tests.sh is added by Vagrantfile
chmod +x run-tests.sh