Skip to content

Commit fbca7b4

Browse files
committed
Update release script
Use correct Github org Use https for fetching composer Stop on errors
1 parent b4c534b commit fbca7b4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

make_release.sh

100644100755
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/bash
22

3+
set -e
4+
35
RELEASE_DIR=${HOME}/Releases
4-
GITHUB_USER=fkooman
6+
GITHUB_USER=OpenConextApps
57
PROJECT_NAME=php-voot-provider
68

79
if [ -z "$1" ]
@@ -33,7 +35,7 @@ rm -rf ${RELEASE_DIR}/${PROJECT_NAME}-${TAG}
3335
# get Composer
3436
(
3537
cd ${RELEASE_DIR}
36-
curl -O http://getcomposer.org/composer.phar
38+
curl -O https://getcomposer.org/composer.phar
3739
)
3840

3941
# clone the tag

0 commit comments

Comments
 (0)