Files
copenlight/bin/update-manifest-version.sh
Ivan Carlos de Almeida 6fa41a771d
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s
first load
2025-12-16 04:40:00 -03:00

10 lines
207 B
Bash

#!/bin/sh
# EXIT ON ERROR
set -e
# UPDATE MANIFEST VERSION
NEW_VERSION=$1
mv manifest.json manifest.temp.json
jq -r '.version |= "'${NEW_VERSION}'"' manifest.temp.json > manifest.json
rm manifest.temp.json