Merge pull request #6 from YunoHost/OniriCorpe-patch-1

check if the build branch type is coherent between what the user has specified and what is entered in the changelog
This commit is contained in:
Alexandre Aubin 2024-03-06 00:08:32 +01:00 committed by GitHub
commit a2ccc5bb8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,7 +48,7 @@ function validate_arguments()
[[ $PROJECT =~ ^yunohost|yunohost-admin|moulinette|SSOwat$ ]] || critical "Invalid project $PROJECT"
grep -q "^Codename: $DISTRIB$" $REPO_CONFIG || critical "Invalid distribution $DISTRIB"
grep -q "^Components: .*$BRANCH.*$" $REPO_CONFIG || critical "Invalid branch $BRANCH"
[[ ! -z "$VERSION" ]] || critical "Invalid version $VERSION"
[[ -n "$VERSION" ]] || critical "Invalid version $VERSION"
[[ "$(tty)" != "not a tty" ]] || critical "You aint in a tty (are you in a 'lxc exec' ?) The script can't run because pbuilder won't be happy :|"
}
@ -79,6 +79,12 @@ function checkout_tag()
function build()
{
# check if the build branch type is coherent between what the user has specified and what is specified in the changelog
if ! [[ "$(head -n 1 debian/changelog)" == *"$BRANCH"* ]]; then
echo "The specified branch type is not coherent with the changelog one!"
exit 1
fi
# Create temporary folder
TMP_FOLDER=$(mktemp -d)