Skip to content

Commit 1b5c847

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 1b5c847

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/build_examples.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ for example in "$EXAMPLES_DIR"/*; do
2121
build_status=$?
2222

2323
if [[ $build_status -eq 0 ]]; then
24-
echo "`$ spin build` succeeded for $example_name"
24+
echo "✅ spin build succeeded for $example_name"
2525
else
26-
echo "`$ spin build` failed for $example_name"
26+
echo "❌ spin build failed for $example_name"
2727
fi
2828
echo "$build_output"
2929

0 commit comments

Comments
 (0)