From 73e72c4cd273f353cd0f409cbedcffaa9ff02fc7 Mon Sep 17 00:00:00 2001 From: Nicolas Verhoye Date: Sun, 19 Jan 2020 22:59:19 +0100 Subject: [PATCH] Fix issue when using bin/mr Without this fix a have this issue : "OCI runtime exec failed: exec failed: container_linux.go:346: starting container process caused "exec: \"n98-magerun2.phar\": executable file not found in $PATH": unknown" --- compose/magento-2/bin/mr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/magento-2/bin/mr b/compose/magento-2/bin/mr index 1cb08a1..809579c 100755 --- a/compose/magento-2/bin/mr +++ b/compose/magento-2/bin/mr @@ -3,4 +3,4 @@ set -eu ## change into directory one level above where this script is located allowing it to be run from anywhere cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )/.." -bin/cli n98-magerun2.phar "$@" +bin/cli php n98-magerun2.phar "$@"