diff options
Diffstat (limited to 'script')
-rwxr-xr-x | script/librelease.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/script/librelease.sh b/script/librelease.sh index 6125236361..089b371b7d 100755 --- a/script/librelease.sh +++ b/script/librelease.sh @@ -61,7 +61,12 @@ release_lib() { exit 1 } - echo "Transferring" + echo "Push git tag $tagname" + git push ssh://git.samba.org/data/git/samba.git refs/tags/$tagname:refs/tags/$tagname || { + exit 1 + } + + echo "Transferring for FTP" rsync -Pav $tarname.asc $tgzname master.samba.org:~ftp/pub/$lib/ || { exit 1 } |