Skip to content

Commit

Permalink
fix: lock file permission
Browse files Browse the repository at this point in the history
  • Loading branch information
johntaiko committed May 23, 2024
1 parent ca463c0 commit a203649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provers/sgx/setup/src/setup_bootstrap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub(crate) async fn setup_bootstrap(
let _filelock = FileLock::lock(
config_dir.join("bootstrap.lock"),
true,
FileOptions::new().create(true),
FileOptions::new().create(true).write(true),
)?;
let chain_specs = SupportedChainSpecs::merge_from_file(bootstrap_args.chain_spec_path.clone())?;
let l1_chain_spec = chain_specs
Expand Down

0 comments on commit a203649

Please sign in to comment.