youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0f8f097183a149144eb3c3c9b4e598c0842edd7e
parent 491ed3dda2435992ae27dcefae22d3416d9aff12
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 22 Feb 2014 15:06:07 +0100

[release.sh] Do not run tests by default

We are at the point that testing takes waay too long for a release cycle, and fails way too often.
Tests through travis are a better indicator than testing just before release.

Diffstat:
Mdevscripts/release.sh | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/devscripts/release.sh b/devscripts/release.sh @@ -14,9 +14,9 @@ set -e -skip_tests=false -if [ "$1" = '--skip-test' ]; then - skip_tests=true +skip_tests=true +if [ "$1" = '--run-tests' ]; then + skip_tests=false shift fi