Skip to content
Snippets Groups Projects
Commit 5466b245 authored by Luis Araujo's avatar Luis Araujo
Browse files

Concatenate .img suffix for images names


This commit removes printf and use concatenation to get the .img
suffix in the images names.

Signed-off-by: default avatarLuis Araujo <luis.araujo@collabora.co.uk>
Reviewed-by: default avatarSjoerd Simons <sjoerd.simons@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D7346
parent 882db4dc
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ actions:
file: {{ $ospack }}
- action: image-partition
imagename: {{ (printf "%s.img" $image) }}
imagename: {{ $image }}.img
imagesize: 20G
partitiontype: gpt
......
......@@ -17,7 +17,7 @@ actions:
file: {{ $ospack }}
- action: image-partition
imagename: {{ (printf "%s.img" $image) }}
imagename: {{ $image }}.img
{{ if eq $type "minimal" }}
imagesize: 4G
{{ else }}
......
......@@ -17,7 +17,7 @@ actions:
file: {{ $ospack }}
- action: image-partition
imagename: {{ (printf "%s.img" $image) }}
imagename: {{ $image }}.img
{{ if eq $type "minimal" }}
imagesize: 7G
{{end}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment