From 89d1997d637f75f044dc936c9cd9ef31532ef652 Mon Sep 17 00:00:00 2001 From: Miguel Andrade Date: Thu, 4 Aug 2016 16:19:20 +0100 Subject: [PATCH] Update plugin-creation.md Add a reminder to set the correct permissions for executable files. --- docs/development/plugin-creation.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/development/plugin-creation.md b/docs/development/plugin-creation.md index c37b73aba..d6980dd43 100644 --- a/docs/development/plugin-creation.md +++ b/docs/development/plugin-creation.md @@ -119,6 +119,7 @@ version = "0.1.0" A few notes: +- Don't forget to `chmod +x` your executable files. - You should always support `DOKKU_TRACE` as specified on the 2nd line of the plugin. - If your command requires that an application exists, ensure you check for it's existence in the manner prescribed above. - A `help` command is required, though it is allowed to be empty. Also, the command syntax will need to separated by `, ` in order to maintain columnar output alignment.