From e9dbcff1a848548909c18f2e834c8a234dbab2ee Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 16 Aug 2023 23:52:54 +0200 Subject: [PATCH] Removed old `bin/platypush` script. It's already been replaced by the setup.py entry point. --- bin/platypush | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 bin/platypush diff --git a/bin/platypush b/bin/platypush deleted file mode 100755 index 2661c30c..00000000 --- a/bin/platypush +++ /dev/null @@ -1,13 +0,0 @@ -#!python3 - -import sys - -from platypush.app import Application - - -if __name__ == '__main__': - app = Application.build(*sys.argv[1:]) - app.run() - - -# vim:sw=4:ts=4:et: