Skip to content
Snippets Groups Projects
Commit 425cbe8d authored by Emanuele Aina's avatar Emanuele Aina Committed by Andrej Shadura
Browse files

image-sdk: Fix the imageroot default value

parent 49f547cc
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
{{ $mirror := or .mirror "https://repositories.apertis.org/apertis/" }}
{{ $suite := or .suite "18.12" }}
{{ $timestamp := or .timestamp "00000000.0" }}
{{ $imageroot := or .imageroot "https://images.apertis.org/daily/$suite/$timestamp" }}
{{ $imageroot := or .imageroot (printf "https://images.apertis.org/daily/%s/%s" $suite $timestamp) }}
{{ $ospack := or .ospack (printf "ospack_%s-%s-%s_%s" $suite $architecture $type $timestamp) }}
{{ $image := or .image (printf "apertis-%s-%s-%s_%s" $suite $type $architecture $timestamp) }}
......
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