Skip to content

Commit 90197fe

Browse files
authored
Merge pull request #34 from orca-scan/master
Fix incompatibility with Dokku v0.32.3
2 parents 8c72c48 + 929b1d7 commit 90197fe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pre-build

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#!/usr/bin/env bash
22
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
33
source "$PLUGIN_ENABLED_PATH/common/functions"
4-
APP="$1"
4+
BUILDER_TYPE="$1" APP="$2"
5+
if [[ "$BUILDER_TYPE" != "herokuish" ]]; then
6+
exit 0
7+
fi
58
IMAGE=$(get_app_image_name $APP)
69

710
APP_SPECIFIC_KEY_FOLDER="$DOKKU_ROOT/.hostkeys/$APP/.ssh"

pre-build-buildpack

-1
This file was deleted.

0 commit comments

Comments
 (0)