make bundle script incremental when using debug or local builds

This commit is contained in:
Mikayla 2023-10-05 16:41:08 -07:00
parent 13192fa03c
commit 31062d424f
No known key found for this signature in database
4 changed files with 24 additions and 21 deletions

View file

@ -32,12 +32,10 @@ use std::{
ffi::OsStr,
fs::OpenOptions,
io::{IsTerminal, Write as _},
os::unix::prelude::OsStrExt,
panic,
path::{Path, PathBuf},
str,
sync::{
atomic::{AtomicBool, AtomicU32, Ordering},
atomic::{AtomicU32, Ordering},
Arc, Weak,
},
thread,
@ -45,7 +43,7 @@ use std::{
};
use sum_tree::Bias;
use util::{
channel::{ReleaseChannel, URL_SCHEME_PREFIX},
channel::ReleaseChannel,
http::{self, HttpClient},
paths::PathLikeWithPosition,
};