fix: Change local build dir to /etc/bluebuild

This commit is contained in:
Gerald Pinder 2024-02-01 09:55:27 -05:00
parent e069346e15
commit 3d56b029af

View file

@ -2,7 +2,7 @@ use anyhow::{anyhow, Result};
use log::{debug, trace};
use std::process::Command;
pub const LOCAL_BUILD: &str = "/etc/blue-build";
pub const LOCAL_BUILD: &str = "/etc/bluebuild";
pub const ARCHIVE_SUFFIX: &str = "tar.gz";
pub fn check_command_exists(command: &str) -> Result<()> {