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 \