Skip to content

Commit 8baad10

Browse files
committed
chore(devcontainer): change emoji symbols to prevent spacing issue
1 parent bc7aea6 commit 8baad10

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.devcontainer/post-start.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ echo "========================================="
6565
echo ""
6666

6767
# Verify compiler setup
68-
echo "🔧 Verifying compiler configuration..."
68+
echo "🛠 Verifying compiler configuration..."
6969
echo "CC: $CC ($(which $CC))"
7070
echo "CXX: $CXX ($(which $CXX))"
7171
echo ""
@@ -76,23 +76,23 @@ if command -v pre-commit &> /dev/null; then
7676
pre-commit install
7777
echo "✅ Pre-commit hooks installed!"
7878
else
79-
echo "⚠️ Pre-commit not installed! Please install it manually."
79+
echo "🚨 Pre-commit not installed! Please install it manually."
8080
fi
8181
echo ""
8282

8383
# Test CMake configuration
8484
if command -v cmake &> /dev/null; then
85-
echo "🏗️ Testing CMake configuration..."
85+
echo "🔍 Testing CMake configuration..."
8686
cmake --list-presets=configure 2>/dev/null || echo "No configure presets found"
8787
echo ""
8888

8989
if cmake --workflow --preset debug-workflow; then
9090
echo "✅ CMake configuration successful!"
9191
else
92-
echo "⚠️ CMake configuration failed!"
92+
echo "🚨 CMake configuration failed!"
9393
fi
9494
else
95-
echo "⚠️ CMake not installed! Please install it manually."
95+
echo "🚨 CMake not installed! Please install it manually."
9696
fi
9797
echo ""
9898

0 commit comments

Comments
 (0)