We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25f1bbc + fa58401 commit d93f59aCopy full SHA for d93f59a
php/commands/src/CLI_Command.php
@@ -260,6 +260,9 @@ public function update( $_, $assoc_args ) {
260
if ( ! Utils\inside_phar() ) {
261
EE::error( 'You can only self-update Phar files.' );
262
}
263
+ if ( IS_DARWIN ) {
264
+ EE::error( 'Please use `brew upgrade easyengine` to update EasyEngine on macOS.' );
265
+ }
266
$old_phar = realpath( $_SERVER['argv'][0] );
267
if ( ! is_writable( $old_phar ) ) {
268
EE::error( sprintf( '%s is not writable by current user.', $old_phar ) );
0 commit comments