Skip to content

Commit 3d09085

Browse files
committed
Merge branch 'mrrobot47-fix/error-msg' into develop-v4
2 parents 942d8dd + 263c2cc commit 3d09085

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

php/EE/Runner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ public function init_logger() {
486486
}
487487

488488
if ( ! is_writable( EE_CONF_ROOT ) ) {
489-
EE::err( 'Please run `ee` as root user.' );
489+
EE::err( 'Please run `ee` with root privileges.' );
490490
}
491491

492492
if ( !empty( $this->arguments[0] ) && 'cli' === $this->arguments[0] && ! empty( $this->arguments[1] ) && 'info' === $this->arguments[1] && ! $this->config['ssh'] ) {
@@ -624,7 +624,7 @@ private function ensure_present_in_config( $var, $default) {
624624
$this->add_var_to_config_file( $var, $config_file_path );
625625
return;
626626
}
627-
EE::err("Please run `ee` as root user.");
627+
EE::err("Please run `ee` with root privileges.");
628628
}
629629
}
630630
}

0 commit comments

Comments
 (0)