We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c272d7 commit ce6fb8bCopy full SHA for ce6fb8b
webrtc-sys/build/src/lib.rs
@@ -183,6 +183,8 @@ pub fn configure_jni_symbols() -> Result<()> {
183
184
pub fn download_webrtc() -> Result<()> {
185
let dir = scratch::path(SCRATH_PATH);
186
+ // temporary fix to avoid github workflow issue
187
+ fs::create_dir_all(&dir).context("Failed to create scratch_path")?;
188
let flock = File::create(dir.join(".lock"))
189
.context("Failed to create lock file for WebRTC download")?;
190
flock.lock_exclusive().context("Failed to acquire exclusive lock for WebRTC download")?;
0 commit comments