From 8c3aa9383be1bcf3474979882dd401bf48f2f0ca Mon Sep 17 00:00:00 2001 From: Evan Herman Date: Thu, 30 Mar 2023 04:13:32 -0400 Subject: [PATCH] Fix sed command --- bin/version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/version.sh b/bin/version.sh index 60a1623..a304b8e 100755 --- a/bin/version.sh +++ b/bin/version.sh @@ -33,4 +33,4 @@ sed -i "s/Stable tag: .*/Stable tag: "$VERSION"/" readme.txt # Update the deploy time in the remote update manifest file. # "last_updated" : "2023-03-30 00:00:00", -sed -i '' 's/"last_updated" : .*/"last_updated" : "'"$(date -u +"%Y-%m-%d %T")"'",/' remote-update-assets/manifest.json \ No newline at end of file +sed -i 's/"last_updated" : .*/"last_updated" : "'"$(date -u +"%Y-%m-%d %T")"'",/' remote-update-assets/manifest.json \ No newline at end of file