From 626cd8b2e13ca1af71e09acfdc42d382c5d0636b Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 6 Aug 2019 11:22:18 +0100 Subject: [PATCH] build: add vendor name --- PolyFeed/Program.cs | 1 + build | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/PolyFeed/Program.cs b/PolyFeed/Program.cs index a7777cb..492f3ae 100644 --- a/PolyFeed/Program.cs +++ b/PolyFeed/Program.cs @@ -123,6 +123,7 @@ namespace PolyFeed public static string GetProgramVersion() { + // BUG: This isn't returning 0.1.1 for some reason :-/ Version version = Assembly.GetExecutingAssembly().GetName().Version; return $"{version.Major}.{version.Minor}"; } diff --git a/build b/build index 992e7a6..09ab237 100755 --- a/build +++ b/build @@ -79,7 +79,9 @@ task_package() { fpm -s dir -t deb -n polyfeed \ --epoch 0 -v "${version}" \ --license MPL-2.0 \ - --architecture all --maintainer "Starbeamrainbowlabs " \ + --architecture all \ + --maintainer "Starbeamrainbowlabs " \ + --vendor "Starbeamrainbowlabs " \ --description "Create Atom feeds for websites that don't support it" \ --url "https://github.com/sbrl/PolyFeed" \ --depends mono-runtime \