We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035871b commit 63d99a9Copy full SHA for 63d99a9
native/src/components/runtime.rs
@@ -352,7 +352,7 @@ impl Runtime {
352
Ok(())
353
}
354
355
- #[cfg(platform_linux)]
+ #[cfg(all(platform_linux, not(feature = "immutable-runtime")))]
356
pub fn link(&self) -> Result<()> {
357
use std::fs::{copy, create_dir_all};
358
use std::os::unix::fs::symlink;
native/src/console/site.rs
@@ -46,7 +46,7 @@ impl Run for SiteLaunchCommand {
46
bail!("Runtime not installed");
47
48
49
50
{
51
use std::fs::File;
52
use std::io::Read;
0 commit comments