From ed531ec2898688876b5ea10b4ff6d6d8fb23d337 Mon Sep 17 00:00:00 2001 From: skykooler Date: Wed, 18 Dec 2024 23:48:33 -0500 Subject: [PATCH] pipe sed dont slash --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b925dd6..122f6a3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,7 +50,7 @@ jobs: # Copy tauri.conf.json to tauri.windows.conf.json and substitute version number for Windows cp src-tauri/tauri.conf.json src-tauri/tauri.windows.conf.json - sed -i "s/\"version\": \".*\"/\"version\": \"${WINDOWS_VERSION}\"/" src-tauri/tauri.windows.conf.json + sed -i "s|\"version\": \".*\"|\"version\": \"${WINDOWS_VERSION}\"|" src-tauri/tauri.windows.conf.json shell: bash - name: Set version for all platforms