From 690b6ca973596d08a172b145075511e86e7a6777 Mon Sep 17 00:00:00 2001 From: Yannick Mauray Date: Tue, 8 Nov 2022 07:39:27 +0100 Subject: [PATCH] chore: fixed build --- Makefile | 4 ++-- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 82364f4..a4710ab 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /usr/bin/env bash VERSION := $(shell cat pubspec.yaml | grep "^version: " | cut -c 10- | sed 's/+/\-/') SHORT_VERSION := $(shell xx="$(VERSION)"; arrVersion=($${xx//-/ }); echo $${arrVersion[0]};) BUILD_ROOT := ../build-package -BASE_NAME := quickgui-$(SHORT_VERSION) +BASE_NAME := quickgui_$(SHORT_VERSION) BUILD_DIR := $(BUILD_ROOT)/$(BASE_NAME) BIN_TAR := $(BUILD_ROOT)/$(BASE_NAME).tar SRC_TAR := $(BUILD_ROOT)/$(BASE_NAME)-src.tar @@ -42,7 +42,7 @@ ppa: version cd /mnt/data/dev/debianpackages/quickgui.deb/quickgui ; \ dch -v $(VERSION) "New changelog message" ; \ vi debian/changelog ; \ - for dist in focal jammy kinetic; do \ + for dist in focal jammy kinetic lunar; do \ sed -i "1 s/^\(.*\)) UNRELEASED;\(.*\)\$$/\1~xxx1.0) xxx;\2/g" debian/changelog ; \ sed -i "1 s/~.*1\.0) .*;\(.*\)\$$/~$${dist}1.0) $$dist;\1/g" debian/changelog ; \ dpkg-buildpackage -d -S -sa ; \ diff --git a/pubspec.yaml b/pubspec.yaml index 0ce5a5c..c99ad34 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: quickgui description: A new Flutter project. publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 1.2.5 +version: 1.2.6 environment: sdk: ">=2.14.4 <3.0.0"