summaryrefslogtreecommitdiff
path: root/kanboard
diff options
context:
space:
mode:
Diffstat (limited to 'kanboard')
-rwxr-xr-xkanboard13
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);
-}