v0.0.4 - Remove incomplete n_signer glue, update services/smoketest, add ISO version stamping, and include custom console fonts

This commit is contained in:
Laan Tungir
2026-05-09 10:25:28 -04:00
parent 0f74671529
commit 5b16773dd6
112 changed files with 60 additions and 188 deletions

View File

@@ -163,14 +163,13 @@ print_info "Staging changes..."
git add -A
if git diff --staged --quiet; then
print_warning "No staged changes to commit"
exit 0
print_warning "No staged changes to commit; continuing with version tag bump"
else
FULL_COMMIT_MESSAGE="$NEW_VERSION - $COMMIT_MESSAGE"
print_info "Committing: $FULL_COMMIT_MESSAGE"
git commit -m "$FULL_COMMIT_MESSAGE"
fi
FULL_COMMIT_MESSAGE="$NEW_VERSION - $COMMIT_MESSAGE"
print_info "Committing: $FULL_COMMIT_MESSAGE"
git commit -m "$FULL_COMMIT_MESSAGE"
if git rev-parse "$NEW_VERSION" >/dev/null 2>&1; then
print_warning "Tag $NEW_VERSION already exists locally. Re-pointing to current commit."
git tag -d "$NEW_VERSION" >/dev/null 2>&1 || true