Skip to content

Commit 0371e7c

Browse files
committed
fixed prerelease support in deb packaging
1 parent c98043a commit 0371e7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -359,20 +359,20 @@ deb-src: debian
359359
@echo "#############################################"
360360
@echo "Ansible DEB artifacts:"
361361
@for DIST in $(DEB_DIST) ; do \
362-
echo deb-build/$${DIST}/$(NAME)_$(VERSION)-$(DEB_RELEASE)~$${DIST}_source.changes ; \
362+
echo deb-build/$${DIST}/$(NAME)_$(DEB_VERSION)-$(DEB_RELEASE)~$${DIST}_source.changes ; \
363363
done
364364
@echo "#############################################"
365365

366366
.PHONY: deb-upload
367367
deb-upload: deb
368368
@for DIST in $(DEB_DIST) ; do \
369-
$(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$${DIST}/$(NAME)_$(VERSION)-$(DEB_RELEASE)~$${DIST}_amd64.changes ; \
369+
$(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$${DIST}/$(NAME)_$(DEB_VERSION)-$(DEB_RELEASE)~$${DIST}_amd64.changes ; \
370370
done
371371

372372
.PHONY: deb-src-upload
373373
deb-src-upload: deb-src
374374
@for DIST in $(DEB_DIST) ; do \
375-
$(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$${DIST}/$(NAME)_$(VERSION)-$(DEB_RELEASE)~$${DIST}_source.changes ; \
375+
$(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$${DIST}/$(NAME)_$(DEB_VERSION)-$(DEB_RELEASE)~$${DIST}_source.changes ; \
376376
done
377377

378378
.PHONY: epub

0 commit comments

Comments
 (0)