mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
Pass write(true)
when creating a file in RealFs
This commit is contained in:
parent
a19735c05f
commit
03812a6cdc
@ -73,7 +73,7 @@ impl Fs for RealFs {
|
||||
|
||||
async fn create_file(&self, path: &Path, options: CreateOptions) -> Result<()> {
|
||||
let mut open_options = smol::fs::OpenOptions::new();
|
||||
open_options.create(true);
|
||||
open_options.write(true).create(true);
|
||||
if options.overwrite {
|
||||
open_options.truncate(true);
|
||||
} else if !options.ignore_if_exists {
|
||||
|
Loading…
Reference in New Issue
Block a user