using absolute path for plugins

This commit is contained in:
Jeff Lindsay
2013-06-30 11:02:40 -05:00
parent 1ebfc9486a
commit 6be113f7de
3 changed files with 5 additions and 3 deletions

View File

@@ -8,7 +8,8 @@ install: gitreceive sshcommand pluginhook
cp dokku /usr/local/bin/dokku
cp receiver /home/git/receiver
cp nginx-app-conf /home/git/nginx-app-conf
cp -r plugins /home/git/.plugins
mkdir -p /var/lib/dokku/plugins
cp -r plugins/* /var/lib/dokku/plugins
gitreceive:
wget -qO /usr/local/bin/gitreceive ${GITRECEIVE_URL}

View File

@@ -15,7 +15,7 @@ cd dokku && make install
curl "$DOKKU_STACK" | gunzip -cd | docker import - progrium/buildstep
PLUGINPATH=/home/git/.plugins
PLUGIN_PATH=/var/lib/dokku/plugins
pluginhook install
echo

3
dokku
View File

@@ -1,5 +1,5 @@
#!/bin/bash
PLUGIN_PATH="$HOME/.plugins"
export PLUGIN_PATH="/var/lib/dokku/plugins"
set -e; case "$1" in
receive)
APP="$2"; IMAGE="app/$APP"
@@ -53,6 +53,7 @@ set -e; case "$1" in
;;
*)
shift
pluginhook commands "$@"
;;