chore: add debug feature
This commit is contained in:
parent
0290d9ddfc
commit
5b9e078061
@ -42,6 +42,7 @@ winreg = { version = "0.10", features = ["transactions"] }
|
|||||||
default = [ "custom-protocol" ]
|
default = [ "custom-protocol" ]
|
||||||
custom-protocol = [ "tauri/custom-protocol" ]
|
custom-protocol = [ "tauri/custom-protocol" ]
|
||||||
verge-dev = []
|
verge-dev = []
|
||||||
|
debug-yml = []
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
|
@ -53,5 +53,9 @@ pub fn profiles_path() -> PathBuf {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn profiles_temp_path() -> PathBuf {
|
pub fn profiles_temp_path() -> PathBuf {
|
||||||
temp_dir().join(PROFILE_TEMP)
|
#[cfg(not(feature = "debug-yml"))]
|
||||||
|
return temp_dir().join(PROFILE_TEMP);
|
||||||
|
|
||||||
|
#[cfg(feature = "debug-yml")]
|
||||||
|
return app_home_dir().join(PROFILE_TEMP);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user