Revision: 3388
Author:
jai...@gmail.com
Date: Mon Feb 24 20:10:12 2014 UTC
Log: Fix build-release.sh script to automatically get composer if not
present.
http://code.google.com/p/simplesamlphp/source/detail?r=3388
Modified:
/trunk/bin/build-release.sh
=======================================
--- /trunk/bin/build-release.sh Fri Nov 15 09:34:07 2013 UTC
+++ /trunk/bin/build-release.sh Mon Feb 24 20:10:12 2014 UTC
@@ -29,8 +29,7 @@
# Use composer only on newer versions that have a composer.json
if [ -f "$TAG/composer.json" ]; then
if [ ! -x composer.phar ]; then
- echo "$0: Composerfile detected, but Composer not installed?" >&2
- exit 1
+ curl -sS
https://getcomposer.org/installer | php
fi
# Install dependencies (without vcs history or dev tools)