forked from pool/permissions
Marcus Meissner
9bbb7deff7
- Fixed versions. Removed set_version from _service file, doesn't work with the new packaging. Call fix_version.sh to set current date as version instead - Fixed requires for -config and -zypp-plugin OBS-URL: https://build.opensuse.org/request/show/700150 OBS-URL: https://build.opensuse.org/package/show/Base:System/permissions?expand=0&rev=218
7 lines
160 B
Bash
7 lines
160 B
Bash
#!/bin/sh
|
|
|
|
version=`date '+%Y%m%d'`
|
|
|
|
echo "setting version to ${version}"
|
|
sed -E -i -e "s/^%define VERSION [0-9]+/%define VERSION ${version}/" permissions.spec
|