Skip to content

Commit

Permalink
Remove comments and debug statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
hoolioh committed Nov 7, 2024
1 parent b90c8b8 commit 7b32c8f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions builder/src/bin/release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ struct ReleaseArgs {
impl From<pico_args::Arguments> for ReleaseArgs {
fn from(mut args: pico_args::Arguments) -> Self {
let release_args = ReleaseArgs {
// out_dir: args.value_from_str("--out").map_or(None, Some),
out_dir: match args.value_from_str("--out") {
Ok(v) => Some(v),
Err(_) => None,
Expand All @@ -41,7 +40,6 @@ impl From<pico_args::Arguments> for ReleaseArgs {
pub fn main() {
let args: ReleaseArgs = pico_args::Arguments::from_env().into();

println!("{:?}", std::env::vars());
let (_, source_path) = determine_paths();

let profile = env::var("PROFILE").unwrap();
Expand Down
1 change: 0 additions & 1 deletion builder/src/profiling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ impl Profiling {

// Create files
for file in files.iter() {
// let file_in = "../profiling-ffi/".to_string() + file + ".in";
let file_in = file.to_string() + ".in";

let mut pc_origin: PathBuf = project_root();
Expand Down

0 comments on commit 7b32c8f

Please sign in to comment.