Skip to content

Commit 11d4b3a

Browse files
authored
Merge pull request #92 from thin-edge/dev-print-output-artifact-on-console
2 parents 5df41ca + d2de1e0 commit 11d4b3a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

justfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ build-image: build-setup
6060
--release-version "{{VERSION}}" \
6161
{{SYSTEM}}
6262

63+
echo "Created the image successfully"
64+
echo
65+
echo " build/{{SYSTEM}}/system.img"
66+
echo
67+
6368
# Build bundle (uncompressed)
6469
build-bundle-uncompressed OUTPUT="system.rugixb": build-setup
6570
./run-bakery bake bundle \
@@ -69,13 +74,23 @@ build-bundle-uncompressed OUTPUT="system.rugixb": build-setup
6974
{{SYSTEM}} \
7075
build/{{SYSTEM}}/{{OUTPUT}}
7176

77+
echo "Created the (uncompressed) bundle successfully"
78+
echo
79+
echo " build/{{SYSTEM}}/{{OUTPUT}}"
80+
echo
81+
7282
# Build build (compressed)
7383
build-bundle OUTPUT="system.rugixb": build-setup
7484
./run-bakery bake bundle \
7585
--release-id "{{RELEASE_ID}}" \
7686
--release-version "{{VERSION}}" \
7787
{{SYSTEM}} \
7888
build/{{SYSTEM}}/{{OUTPUT}}
89+
90+
echo "Created the (compressed) bundle successfully"
91+
echo
92+
echo " build/{{SYSTEM}}/{{OUTPUT}}"
93+
echo
7994

8095
# Start vm
8196
start-vm: prepare

0 commit comments

Comments
 (0)