Skip to content

Commit fbd2100

Browse files
committed
Use $PLUGIN_PATH instead of $(dirname $0)/../
1 parent eab0cba commit fbd2100

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

commands

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

post-delete

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

pre-build-buildpack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

pre-build-dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

pre-deploy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

pre-release-buildpack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

pre-release-dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
source "$(dirname $0)/../common/functions"
2+
source "$PLUGIN_PATH/common/functions"
33
# Reset bash mode from importing the functions
44
set +exo pipefail
55
# Fail on equation failure

0 commit comments

Comments
 (0)