From 4ac160313e87457424def2e8f84414585b553ac8 Mon Sep 17 00:00:00 2001 From: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> Date: Mon, 14 Oct 2024 12:37:09 +0200 Subject: [PATCH] Use long arg for `tr` command (#712) as it's more readable and indicative what it does --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41c41d4..8297411 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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