mirror of
https://github.com/dokku/dokku.git
synced 2026-02-23 19:50:34 +01:00
cat is no longer needed by plugn
This commit is contained in:
committed by
Jose Diaz-Gonzalez
parent
bef51a1c6b
commit
30631692a5
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user