File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use crate::polyglot::PATH_SEPARATOR;
55use crate :: runners:: justfile:: init_justfile;
66use crate :: runners:: RUNNERS ;
77use colored:: Colorize ;
8- use dotenvy :: dotenv ;
8+ use dotenvx_rs :: dotenvx ;
99use std:: collections:: HashSet ;
1010use std:: env;
1111use std:: fs:: Permissions ;
@@ -734,12 +734,12 @@ fn format_description(description: &str) -> String {
734734}
735735
736736fn load_env ( ) {
737- dotenv ( ) . ok ( ) ;
737+ dotenvx :: dotenv ( ) . ok ( ) ;
738738 if env:: current_dir ( ) . unwrap ( ) . join ( ".flaskenv" ) . exists ( ) {
739- dotenvy :: from_filename ( ".flaskenv" ) . ok ( ) ;
739+ dotenvx :: from_filename ( ".flaskenv" ) . ok ( ) ;
740740 }
741741 if let Ok ( node_env) = env:: var ( "NODE_ENV" ) {
742- dotenvy :: from_filename ( format ! ( ".env.{}" , node_env) ) . ok ( ) ;
742+ dotenvx :: from_filename ( format ! ( ".env.{}" , node_env) ) . ok ( ) ;
743743 }
744744}
745745
You can’t perform that action at this time.
0 commit comments