1
mirror of https://github.com/R2Northstar/Northstar synced 2025-09-25 11:30:50 +02:00

Compare commits

...

1 Commits

Author SHA1 Message Date
GeckoEidechse
4ac160313e Use long arg for tr command (#712)
as it's more readable and indicative what it does
2024-10-14 12:37:09 +02:00

View File

@@ -46,7 +46,7 @@ jobs:
path: northstar-mods
- name: Update mod version info
run: |
export MOD_VERSION=$(echo $NORTHSTAR_VERSION | tr -d 'v')
export MOD_VERSION=$(echo $NORTHSTAR_VERSION | tr --delete 'v')
cat <<< $(jq ".Version = \"${MOD_VERSION}\"" northstar-mods/Northstar.Client/mod.json) > northstar-mods/Northstar.Client/mod.json
cat <<< $(jq ".Version = \"${MOD_VERSION}\"" northstar-mods/Northstar.Custom/mod.json) > northstar-mods/Northstar.Custom/mod.json
cat <<< $(jq ".Version = \"${MOD_VERSION}\"" northstar-mods/Northstar.CustomServers/mod.json) > northstar-mods/Northstar.CustomServers/mod.json