Skip to content

Commit

Permalink
0.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jun 18, 2023
1 parent bf5710e commit 94994e2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chompbuild"
version = "0.2.15"
version = "0.2.16"
authors = ["Guy Bedford <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node-chomp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chomp",
"version": "0.2.15",
"version": "0.2.16",
"description": "'JS Make' - parallel task runner CLI for the frontend ecosystem with a JS extension system",
"bin": {
"chomp": "index.js"
Expand Down
3 changes: 2 additions & 1 deletion src/engines/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use crate::chompfile::TaskStdio;
use crate::engines::BatchCmd;
use regex::Regex;
use std::collections::BTreeMap;
use std::env;
use std::fs;
use std::path::{Path, PathBuf};
use std::process::Stdio;
Expand Down Expand Up @@ -50,7 +51,7 @@ fn replace_env_vars(arg: &str, env: &BTreeMap<String, String>) -> String {
}
}
}
for (name, value) in std::env::vars() {
for (name, value) in env::vars() {
let name = name.to_uppercase();
if !out_arg.contains(&name) {
continue;
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ fn uri_parse(uri_str: &str) -> Option<Uri> {
#[tokio::main]
async fn main() -> Result<()> {
#[cfg(not(debug_assertions))]
let version = "0.2.15";
let version = "0.2.16";
#[cfg(debug_assertions)]
let version = "0.2.15-debug";
let version = "0.2.16-debug";
let matches = Command::new("Chomp")
.version(version)
.arg(
Expand Down

0 comments on commit 94994e2

Please sign in to comment.