We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83f20d1 commit 7b75703Copy full SHA for 7b75703
1 file changed
src/Dash_Command.php
@@ -129,11 +129,14 @@ public function init( $args, $assoc_args ) {
129
EE::launch( 'echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILbESQqRcGdwnn/u1BkDCD9rDiFqgDhTHBHIIasaDpWV EasyEngine" >> /root/.ssh/authorized_keys' );
130
}
131
132
- $server_data = [
133
- "hostname" => $hostname,
134
- "public_ipv4" => $public_ipv4,
135
- "organization" => $organization,
136
- ];
+ $ee_version = EE_VERSION;
+
+ $server_data = [
+ "hostname" => $hostname,
+ "public_ipv4" => $public_ipv4,
137
+ "organization" => $organization,
138
+ "ee_version" => $ee_version,
139
+ ];
140
141
$server_data_json = json_encode( $server_data );
142
0 commit comments