cat is no longer needed by plugn

This commit is contained in:
Michael Hobbs
2015-09-08 17:32:12 -07:00
committed by Jose Diaz-Gonzalez
parent bef51a1c6b
commit 30631692a5
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ APP="$1"; REV="$2"
# Don't trigger git build if there is no git repository.
if [ ! -d "$DOKKU_ROOT/$APP/refs" ]; then
cat || true
true
else
dokku git-build $APP $REV
fi

View File

@@ -15,7 +15,7 @@ case "$1" in
APP="$2"
verify_app_name "$2"
tee "$DOKKU_ROOT/$APP/src.tar" | wc -c
plugn trigger -p receive-app $APP
plugn trigger receive-app $APP
;;
tar-build)

View File

@@ -6,7 +6,7 @@ APP="$1"; REV="$2"
# Don't trigger tar build if there is no tarball.
if [ ! -f "$DOKKU_ROOT/$APP/src.tar" ]; then
cat || true
true
else
dokku tar-build $APP
fi