Skip to content

Commit b311fcf

Browse files
committed
Merge branch 'develop' for v4.0.3
2 parents 4fb750a + bc4cb91 commit b311fcf

File tree

6 files changed

+80
-33
lines changed

6 files changed

+80
-33
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.2
1+
4.0.3

ci/deploy.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ echo "|1|qPmmP7LVZ7Qbpk7AylmkfR0FApQ=|WUy1WS3F4qcr3R5Sc728778goPw= ssh-rsa AAAAB
3232

3333
git clone [email protected]:easyengine/easyengine-builds.git
3434

35-
git config user.name "Travis CI"
36-
git config user.email "[email protected]"
37-
git config push.default "current"
35+
git config --global user.name "rtBot"
36+
git config --global user.email "[email protected]"
37+
git config --global push.default "current"
3838

3939
if [[ "$TRAVIS_BRANCH" == "develop" ]]; then
4040
fname="phar/easyengine-nightly.phar"

ci/prepare.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ if [[ "$TRAVIS_BRANCH" != $DEPLOY_BRANCH ]]; then
77
version="$(echo $version | xargs)"
88
version+="-nightly-$(git rev-parse --short HEAD)"
99
echo $version > VERSION
10-
sed -i 's/\:\ \"\(.*\)\"/\:\ \"\1-nightly\"/g' img-versions.json
1110
fi
1211

1312
php -dphar.readonly=0 ./utils/make-phar.php easyengine.phar --quiet

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@
2929
"composer/semver": "1.4.2",
3030
"easyengine/admin-tools-command": "v1.0.1",
3131
"easyengine/auth-command": "v1.0.0",
32-
"easyengine/config-command": "v1.0.0",
32+
"easyengine/config-command": "v1.0.1",
3333
"easyengine/cron-command": "v1.0.1",
34+
"easyengine/log-command": "v1.0.0",
3435
"easyengine/mailhog-command": "v1.0.1",
35-
"easyengine/site-command": "v2.2.3",
36+
"easyengine/site-command": "v2.2.4",
3637
"easyengine/site-type-wp": "v1.0.1",
3738
"easyengine/site-type-php": "v1.0.1",
38-
"easyengine/service-command": "v1.0.1",
39+
"easyengine/service-command": "v1.0.2",
3940
"easyengine/shell-command" : "v1.0.0",
4041
"justinrainbow/json-schema": "5.2.7",
4142
"monolog/monolog": "1.24.0",

composer.lock

Lines changed: 68 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

php/commands/help.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ class Help_Command extends EE_Command {
1515
*
1616
* ## EXAMPLES
1717
*
18-
* # get help for `core` command
19-
* ee help core
18+
* # get help for `site` command
19+
* ee help site
2020
*
21-
* # get help for `core download` subcommand
22-
* ee help core download
21+
* # get help for `site create` subcommand
22+
* ee help site create
2323
*/
2424
public function __invoke( $args, $assoc_args ) {
2525
$r = EE::get_runner()->find_command_to_run( $args );

0 commit comments

Comments
 (0)