mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-01-22 07:02:05 +01:00
11 lines
334 B
Bash
Executable File
11 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION=$1
|
|
|
|
SERVICE_FILE="./dist/rpm/_service"
|
|
sed -i -e "s?\(^.*\"revision\">\).*\(</param>\)?\1$VERSION\2?" $SERVICE_FILE
|
|
sed -i -e "s?\(^.*\"versionformat\">\).*\(</param>\)?\1$VERSION\2?" $SERVICE_FILE
|
|
|
|
MANIFEST_FILE="./webext/manifest.json"
|
|
sed -i -e "s?\(^.*\"version\": \"\).*\(\",\)?\1$VERSION\2?" $MANIFEST_FILE
|