diff options
-rw-r--r-- | updater-supervisor/patches/0001-Fix-entry-point.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/updater-supervisor/patches/0001-Fix-entry-point.patch b/updater-supervisor/patches/0001-Fix-entry-point.patch new file mode 100644 index 0000000..b249337 --- /dev/null +++ b/updater-supervisor/patches/0001-Fix-entry-point.patch @@ -0,0 +1,25 @@ +From 03e577274ebce02409c7ce9daff8f1bbaaf713ad Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= <karel.koci@nic.cz> +Date: Mon, 25 Mar 2019 07:29:33 +0100 +Subject: [PATCH] Fix entry point + +--- + setup.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/setup.py b/setup.py +index 00e4493..28ef691 100755 +--- a/setup.py ++++ b/setup.py +@@ -37,7 +37,7 @@ setup( + packages=['svupdater'], + entry_points={ + 'console_scripts': [ +- 'updater-supervisor=svupdater:main' ++ 'updater-supervisor=svupdater:__main__' + ] + } + ) +-- +2.21.0 + |