Vendor opencode source for docker build
This commit is contained in:
10
opencode/packages/desktop/src-tauri/build.rs
Normal file
10
opencode/packages/desktop/src-tauri/build.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
fn main() {
|
||||
if let Ok(git_ref) = std::env::var("GITHUB_REF") {
|
||||
let branch = git_ref.strip_prefix("refs/heads/").unwrap_or(&git_ref);
|
||||
if branch == "beta" {
|
||||
println!("cargo:rustc-env=OPENCODE_SQLITE=1");
|
||||
}
|
||||
}
|
||||
|
||||
tauri_build::build()
|
||||
}
|
||||
Reference in New Issue
Block a user