We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58eeacb commit e6a4010Copy full SHA for e6a4010
1 file changed
.github/workflows/main.yml
@@ -37,7 +37,8 @@ jobs:
37
# Run and verify 01.sh
38
chmod +x submission/01.sh
39
HASH=$(submission/01.sh)
40
- if [[ "$HASH" == "000000b024f11595795f0be5974229f786df389c8b92e92b61890e9e3c6b8d8a" ]]; then
+ EXPECTED=000000b024f11595795f0be5974229f786df389c8b92e92b61890e9e3c6b8d8a
41
+ if [[ "$HASH" == "$EXPECTED" ]]; then
42
echo "✅ Success: Verify Hash Block passed!"
43
else
44
echo "❌ Error: Verify Hash Block failed!"
0 commit comments