Bug: Smart quotes (U+201C/U+201D) in pre-release.yml template break git clone #245

Closed
opened 2026-06-06 15:14:45 +00:00 by jmiller · 1 comment
Owner

Issue

The Setup moko-platform tools step in .mokogitea/workflows/pre-release.yml contains Unicode smart quotes (U+201C / U+201D ) instead of ASCII straight quotes. This causes:

fatal: protocol '"https' is not supported

The smart quotes were introduced in the template source and propagated to all 58 repos via bulk_workflow_push.

Affected lines: 67-80 (the /opt/moko-platform detection and fallback clone block)

Fix: Replace all U+201C/U+201D with ASCII " and U+2018/U+2019 with ASCII ' in the template file. Then re-push to all repos.

Files: .mokogitea/workflows/pre-release.yml

## Issue The `Setup moko-platform tools` step in `.mokogitea/workflows/pre-release.yml` contains Unicode smart quotes (U+201C `“` / U+201D `”`) instead of ASCII straight quotes. This causes: ``` fatal: protocol '"https' is not supported ``` The smart quotes were introduced in the template source and propagated to all 58 repos via `bulk_workflow_push`. **Affected lines:** 67-80 (the `/opt/moko-platform` detection and fallback clone block) **Fix:** Replace all U+201C/U+201D with ASCII `"` and U+2018/U+2019 with ASCII `'` in the template file. Then re-push to all repos. **Files:** `.mokogitea/workflows/pre-release.yml`
Author
Owner

Branch created: feature/245-bug-smart-quotes-u-201c-u-201d-in-pre-re

git fetch origin
git checkout feature/245-bug-smart-quotes-u-201c-u-201d-in-pre-re
Branch created: [`feature/245-bug-smart-quotes-u-201c-u-201d-in-pre-re`](https://git.mokoconsulting.tech/MokoConsulting/moko-platform/src/branch/feature/245-bug-smart-quotes-u-201c-u-201d-in-pre-re) ```bash git fetch origin git checkout feature/245-bug-smart-quotes-u-201c-u-201d-in-pre-re ```
Sign in to join this conversation.
No labels
Status
Priority High
Type Bug
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: MokoConsulting/moko-platform#245