File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
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 dotenv :: dotenv;
8+ use dotenvy :: dotenv;
99use std:: collections:: HashSet ;
1010use std:: env;
1111use std:: fs:: Permissions ;
@@ -736,10 +736,10 @@ fn format_description(description: &str) -> String {
736736fn load_env ( ) {
737737 dotenv ( ) . ok ( ) ;
738738 if env:: current_dir ( ) . unwrap ( ) . join ( ".flaskenv" ) . exists ( ) {
739- dotenv :: from_filename ( ".flaskenv" ) . ok ( ) ;
739+ dotenvy :: from_filename ( ".flaskenv" ) . ok ( ) ;
740740 }
741741 if let Ok ( node_env) = env:: var ( "NODE_ENV" ) {
742- dotenv :: from_filename ( format ! ( ".env.{}" , node_env) ) . ok ( ) ;
742+ dotenvy :: from_filename ( format ! ( ".env.{}" , node_env) ) . ok ( ) ;
743743 }
744744}
745745
You can’t perform that action at this time.
0 commit comments