mirror of
https://github.com/sbrl/PolyFeed.git
synced 2024-11-22 06:23:02 +00:00
Fix fpm call
This commit is contained in:
parent
a1c3633890
commit
d4f351131d
1 changed files with 2 additions and 2 deletions
4
build
4
build
|
@ -73,8 +73,8 @@ task_build() {
|
||||||
|
|
||||||
task_package() {
|
task_package() {
|
||||||
task_begin "Packaging as .deb";
|
task_begin "Packaging as .deb";
|
||||||
version="$(awk '/version = / { print $3 }' PolyFeed.sln)-$(date +"%Y-%m-%dT%H:%M")+$(git rev-parse HEAD | head -c7)";
|
version="$(awk '/version = / { print($3) }' PolyFeed.sln | tr -d '\n\r')-$(date +"%Y-%m-%dT%H:%M")+$(git rev-parse HEAD | head -c7)";
|
||||||
execute fpm -s dir -t deb -n polyfeed -v "${version}" --license MPL-2.0 \
|
fpm -s dir -t deb -n polyfeed -v "${version}" --license MPL-2.0 \
|
||||||
--architecture all --maintainer "Starbeamrainbowlabs <feedback@starbeamrainbowlabs.com>" \
|
--architecture all --maintainer "Starbeamrainbowlabs <feedback@starbeamrainbowlabs.com>" \
|
||||||
--description "Create Atom feeds for websites that don't support it" \
|
--description "Create Atom feeds for websites that don't support it" \
|
||||||
--url "https://github.com/sbrl/PolyFeed" \
|
--url "https://github.com/sbrl/PolyFeed" \
|
||||||
|
|
Loading…
Reference in a new issue