1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use std::path::Path;
use std::process::Command;

use crate::actions::Source;
use crate::errors::Error;
use crate::Executable;

fn gen_command(_exec: &Path, _ource: &Source) -> Command {
    todo!()
}

pub(crate) fn build(source: &Source) -> Result<Executable, Error> {
    super::build(source, gen_command)
}