|  | @@ 39-41 (lines=3) @@ | 
                                                            
                                    | 36 |  | 			WP_CLI::error( __( 'Jetpack is not currently connected to WordPress.com', 'jetpack' ) ); | 
                                                            
                                    | 37 |  | 		} | 
                                                            
                                    | 38 |  |  | 
                                                            
                                    | 39 |  | 		if ( isset( $args[0] ) && 'full' !== $args[0] ) { | 
                                                            
                                    | 40 |  | 			/* translators: %s is a command like "prompt" */ | 
                                                            
                                    | 41 |  | 			WP_CLI::error( sprintf( __( '%s is not a valid command.', 'jetpack' ), $args[0] ) ); | 
                                                            
                                    | 42 |  | 		} | 
                                                            
                                    | 43 |  |  | 
                                                            
                                    | 44 |  | 		$master_user_email = Jetpack::get_master_user_email(); | 
                                                                                
                                |  | @@ 590-592 (lines=3) @@ | 
                                                            
                                    | 587 |  |  | 
                                                            
                                    | 588 |  | 		// Bail if the option isn't found | 
                                                            
                                    | 589 |  | 		$option = isset( $args[1] ) ? Jetpack_Options::get_option( $args[1] ) : false; | 
                                                            
                                    | 590 |  | 		if ( isset( $args[1] ) && ! $option && 'update' !== $args[0] ) { | 
                                                            
                                    | 591 |  | 			WP_CLI::error( __( 'Option not found or is empty.  Use "list" to list option names', 'jetpack' ) ); | 
                                                            
                                    | 592 |  | 		} | 
                                                            
                                    | 593 |  |  | 
                                                            
                                    | 594 |  | 		// Let's print_r the option if it's an array | 
                                                            
                                    | 595 |  | 		// Used in the 'get' and 'list' actions |