File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # # Description: Execute n98-magerun
4
- # # Usage: magerun
5
- # # Example: "ddev magerun"
3
+ # # Description: Execute n98-magerun-tmp
4
+ # # Usage: magerun-tmp
5
+ # # Example: "ddev magerun-tmp "
6
6
7
- if [ ! -f vendor/bin/n98-magerun ]; then
7
+ if [ ! -f vendor/bin/n98-magerun-tmp ]; then
8
8
read -r -p " n98-magerun is not installed. Do you want to install it? [y/N] " INSTALL_MAGE
9
9
INSTALL_MAGERUN=${INSTALL_MAGERUN,,} # to lower
10
10
if [[ " ${INSTALL_MAGERUN} " =~ ^(yes| y) ]]; then
11
- composer require --dev n98/magerun:dev-develop
11
+ composer require --dev n98/magerun-tmp :dev-develop
12
12
else
13
13
exit 1
14
14
fi
15
15
fi
16
16
17
- php -d error_reporting=" E_ALL ^E_DEPRECATED" vendor/bin/n98-magerun " $@ "
17
+ php -d error_reporting=" E_ALL ^E_DEPRECATED" vendor/bin/n98-magerun-tmp " $@ "
You can’t perform that action at this time.
0 commit comments