File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ use std::env;
22use std:: path:: PathBuf ;
33
44use color_eyre:: eyre:: { Context , bail, eyre} ;
5- use inquire:: Confirm ;
65use tracing:: { debug, warn} ;
76
87use crate :: Result ;
@@ -144,7 +143,7 @@ impl DarwinRebuildArgs {
144143 }
145144
146145 if self . common . ask && !self . common . dry && !matches ! ( variant, Build ) {
147- let confirmation = Confirm :: new ( "Apply the config?" )
146+ let confirmation = inquire :: Confirm :: new ( "Apply the config?" )
148147 . with_default ( false )
149148 . prompt ( ) ?;
150149
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ use std::path::PathBuf;
44
55use color_eyre:: Result ;
66use color_eyre:: eyre:: { Context , bail, eyre} ;
7- use inquire:: Confirm ;
87use tracing:: { debug, info, warn} ;
98
109use crate :: commands;
@@ -161,7 +160,7 @@ impl HomeRebuildArgs {
161160 }
162161
163162 if self . common . ask {
164- let confirmation = Confirm :: new ( "Apply the config?" )
163+ let confirmation = inquire :: Confirm :: new ( "Apply the config?" )
165164 . with_default ( false )
166165 . prompt ( ) ?;
167166
You can’t perform that action at this time.
0 commit comments