File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ pub fn command(mut options: Options) -> Result<()> {
74
74
options. config = merge_config;
75
75
76
76
let tauri_path = tauri_dir ( ) ;
77
- set_current_dir ( & tauri_path) . with_context ( || "failed to change current working directory" ) ?;
77
+ set_current_dir ( tauri_path) . with_context ( || "failed to change current working directory" ) ?;
78
78
79
79
let config = get_config ( options. config . as_deref ( ) ) ?;
80
80
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ fn command_internal(mut options: Options) -> Result<()> {
88
88
None
89
89
} ;
90
90
91
- set_current_dir ( & tauri_path) . with_context ( || "failed to change current working directory" ) ?;
91
+ set_current_dir ( tauri_path) . with_context ( || "failed to change current working directory" ) ?;
92
92
93
93
let config = get_config ( options. config . as_deref ( ) ) ?;
94
94
You can’t perform that action at this time.
0 commit comments