diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-11-29 20:22:41 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-11-29 20:26:18 -0500 |
commit | 978a3c70fee3baecb5d25da551db7e2fc23c55f7 (patch) | |
tree | c5105efbd6b14812093599212b8d50165a007dc4 /kanboard | |
parent | fdc4e04e870b82fe93eb0f03b4f54faf8252ba6c (diff) |
Simplify .htaccess and rename command line script
Diffstat (limited to 'kanboard')
-rwxr-xr-x | kanboard | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/kanboard b/kanboard deleted file mode 100755 index 3d8140af..00000000 --- a/kanboard +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env php -<?php - -use Symfony\Component\EventDispatcher\Event; - -try { - require __DIR__.'/app/common.php'; - $container['dispatcher']->dispatch('app.bootstrap', new Event); - $container['cli']->run(); -} catch (Exception $e) { - echo $e->getMessage().PHP_EOL; - exit(255); -} |