mirror of
https://github.com/YunoHost/vinaigrette.git
synced 2024-09-03 20:06:11 +02:00
Misc fixes é_è
This commit is contained in:
parent
436bae2b94
commit
572be2d7c2
2 changed files with 5 additions and 4 deletions
|
@ -33,7 +33,7 @@ EOF
|
|||
|
||||
function main()
|
||||
{
|
||||
validate_argument
|
||||
validate_arguments
|
||||
retrieve_package_info
|
||||
build_sources
|
||||
add_to_reprepro
|
||||
|
@ -87,6 +87,7 @@ function retrieve_package_info()
|
|||
|
||||
function build_sources()
|
||||
{
|
||||
echo "---------------------------------------------------"
|
||||
echo "Building source package of ${PACKAGE}_${VERSION}..."
|
||||
echo "---------------------------------------------------"
|
||||
|
||||
|
@ -100,6 +101,7 @@ function build_sources()
|
|||
|
||||
function add_to_reprepro()
|
||||
{
|
||||
echo "---------------------------------------------------"
|
||||
echo "Adding ${PACKAGE}_${VERSION} to ${DISTRIB}/${BRANCH}..."
|
||||
echo "---------------------------------------------------"
|
||||
$INCLUDE_CHANGES $DISTRIB $BRANCH $CHANGES_FILE
|
||||
|
|
|
@ -5,7 +5,7 @@ readonly PROJECT=$1
|
|||
readonly BRANCH=$2
|
||||
readonly DISTRIB=$3
|
||||
readonly VERSION=$4
|
||||
readonly TAG="debian/$VERSION"
|
||||
readonly TAG=$(echo "debian/$VERSION" | tr '~' '-')
|
||||
|
||||
source /home/vinaigrette/config/config
|
||||
|
||||
|
@ -76,8 +76,7 @@ function checkout_tag()
|
|||
git fetch --quiet
|
||||
git fetch --tags --quiet
|
||||
git checkout $DISTRIB-$BRANCH --quiet
|
||||
#git checkout $BRANCH --quiet
|
||||
#git pull origin $BRANCH --quiet
|
||||
git reset --hard origin/$DISTRIB-$BRANCH --quiet
|
||||
|
||||
LASTVERSIONCHANGELOG=$(dpkg-parsechangelog -S Version 2>/dev/null)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue