Fixed the order of arguments to "git tag"
This commit is contained in:
parent
387518745f
commit
9dab19024d
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
#$Id$
|
||||
#Copyright (c) 2012-2013 Pierre Pronchery <khorben@defora.org>
|
||||
#Copyright (c) 2012-2014 Pierre Pronchery <khorben@defora.org>
|
||||
#This file is part of DeforaOS Devel scripts
|
||||
#This program is free software: you can redistribute it and/or modify
|
||||
#it under the terms of the GNU General Public License as published by
|
||||
|
@ -216,7 +216,7 @@ _release_tag_git()
|
|||
{
|
||||
tag="$1"
|
||||
|
||||
$DEBUG $GIT tag "$tag" -m "$PACKAGE $VERSION" || return 2
|
||||
$DEBUG $GIT tag -m "$PACKAGE $VERSION" "$tag" || return 2
|
||||
$DEBUG $GIT push --tags || return 2
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user