mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
maint: Adjust sed script from 'release' target.
This is a followup to fdafd40432
. This
effect would to set 'GUIX_DISPLAYED_VERSION' to the empty string.
* Makefile.am (release): Remove '/v' from sed script for
GUIX_DISPLAYED_VERSION.
This commit is contained in:
parent
1aa7ee52c6
commit
020184fd39
1 changed files with 2 additions and 2 deletions
|
@ -1002,7 +1002,7 @@ release: dist-with-updated-version all
|
|||
-v1 --no-grafts --fallback
|
||||
# Generate the ISO installation images.
|
||||
for system in $(GUIX_SYSTEM_SUPPORTED_SYSTEMS) ; do \
|
||||
GUIX_DISPLAYED_VERSION="`git describe --match=v* | sed -'es/^v//v'`" ; \
|
||||
GUIX_DISPLAYED_VERSION="`git describe --match=v* | sed -'es/^v//'`" ; \
|
||||
image=`$(top_builddir)/pre-inst-env \
|
||||
guix system image -t iso9660 \
|
||||
--label="GUIX_$${system}_$(VERSION)" \
|
||||
|
@ -1018,7 +1018,7 @@ release: dist-with-updated-version all
|
|||
done
|
||||
# Generate the VM images.
|
||||
for system in $(GUIX_SYSTEM_VM_SYSTEMS) ; do \
|
||||
GUIX_DISPLAYED_VERSION="`git describe --match=v* | sed -'es/^v//v'`" ; \
|
||||
GUIX_DISPLAYED_VERSION="`git describe --match=v* | sed -'es/^v//'`" ; \
|
||||
image=`$(top_builddir)/pre-inst-env \
|
||||
guix system image -t qcow2 $(GUIX_SYSTEM_VM_IMAGE_FLAGS) \
|
||||
--save-provenance \
|
||||
|
|
Loading…
Reference in a new issue