File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ environment variables.
116116# Run the server, with debug logging enabled
117117export GSETTINGS_SCHEMA_DIR=build/credentialsd-ui/data
118118export RUST_LOG=credentialsd=debug,credentials_ui=debug
119- ./build/credentialsd/target/debug /credentialsd &
120- ./build/credentialsd-ui/target/debug /credentialsd-ui
119+ ./build/credentialsd/src /credentialsd &
120+ ./build/credentialsd-ui/src /credentialsd-ui
121121```
122122
123123## Testing development builds with Firefox Web Add-On
Original file line number Diff line number Diff line change @@ -50,13 +50,16 @@ custom_target(
5050 install_dir : bindir,
5151 depends : resources,
5252 command : [
53+ ' rm' ,
54+ ' -f' , ' @OUTPUT@' ,
55+ ' &&' ,
5356 ' env' ,
5457 cargo_env,
5558 cargo,
5659 ' build' ,
5760 cargo_options,
5861 ' &&' ,
59- ' cp ' ,
62+ ' ln ' ,
6063 cargo_target_dir / rust_profile / gui_executable_name,
6164 ' @OUTPUT@' ,
6265 ],
Original file line number Diff line number Diff line change @@ -19,13 +19,16 @@ custom_target(
1919 install : true ,
2020 install_dir : bindir,
2121 command : [
22+ ' rm' ,
23+ ' -f' , ' @OUTPUT@' ,
24+ ' &&' ,
2225 ' env' ,
2326 cargo_env,
2427 cargo,
2528 ' build' ,
2629 cargo_options,
2730 ' &&' ,
28- ' cp ' ,
31+ ' ln ' ,
2932 cargo_target_dir / rust_profile / backend_executable_name,
3033 ' @OUTPUT@' ,
3134 ],
You can’t perform that action at this time.
0 commit comments