Skip to content

Commit e68dad3

Browse files
committed
fix err in script
attempting to fix command not found error in script: https://github.com/fermyon/spin-rust-sdk/actions/runs/11710032376/job/32615376772#step:5:176 Signed-off-by: Michelle Dhanani <[email protected]>
1 parent 28b6dda commit e68dad3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/build_examples.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ for example in "$EXAMPLES_DIR"/*; do
2020
build_output=$(spin build 2>&1)
2121
build_status=$?
2222

23+
echo "$build_output"
24+
2325
if [[ $build_status -eq 0 ]]; then
24-
echo "`$ spin build` succeeded for $example_name"
26+
echo "✅ spin build succeeded for $example_name"
2527
else
26-
echo "`$ spin build` failed for $example_name"
28+
echo "❌ spin build failed for $example_name"
2729
fi
28-
echo "$build_output"
2930

3031
echo "::endgroup::"
3132

0 commit comments

Comments
 (0)