Commit 3537084c authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix: Rename INPUT_PARENT to PARENT_DIRECTORY

parent df2125d8
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2235,7 +2235,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"

[[package]]
name = "pipe-cli"
version = "0.0.7"
version = "0.0.8"
dependencies = [
 "assert_cmd",
 "cargo-watch",
@@ -2261,7 +2261,7 @@ dependencies = [

[[package]]
name = "pipe-lib"
version = "0.0.7"
version = "0.0.8"
dependencies = [
 "bon",
 "bytes",
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ members = ["pipe-cli", "pipe-lib"]
resolver = "2"

[workspace.package]
version = "0.0.7"
version = "0.0.8"
authors = ["Jason Wohlgemuth <wohlgemuthjh@ornl.gov>"]
description = "Parallel Integration and Processing Engine"
documentation = "https://pipe.ornl.gov"
+29 −29
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ FNDA:0,Config::get_environment_variables
FNDA:1,Config::get_inputs
FNDA:1,Config::get_module_list
FNDA:0,Config::prepare_modules
FNDA:3,Config::read
FNDA:1,Config::read
FNDA:1,Config::read_json
FNDA:1,Config::read_yaml
FNDA:0,Config::run_workflow
@@ -296,7 +296,7 @@ FNDA:0,Config::set_environment_variables
FNDA:0,Config::verify_requirements
FNDA:0,Config::verify_resources
FNDA:0,Config::with_options
FNDA:3,Extension::from_string
FNDA:2,Extension::from_string
DA:119,0
DA:120,0
DA:121,0
@@ -442,29 +442,29 @@ DA:400,0
DA:402,0
DA:404,0
DA:406,0
DA:408,3
DA:409,6
DA:410,6
DA:411,3
DA:408,1
DA:409,3
DA:410,3
DA:411,1
DA:412,0
DA:414,2
DA:415,1
DA:416,0
DA:420,6
DA:421,3
DA:420,3
DA:421,2
DA:423,0
DA:424,0
DA:432,1
DA:433,2
DA:434,2
DA:434,4
DA:436,0
DA:437,0
DA:440,5
DA:441,4
DA:442,8
DA:440,4
DA:441,2
DA:442,4
DA:443,0
DA:445,12
DA:446,4
DA:445,6
DA:446,2
DA:453,1
DA:454,2
DA:455,1
@@ -551,9 +551,9 @@ DA:602,0
DA:604,0
DA:605,0
DA:606,0
DA:610,3
DA:611,6
DA:612,6
DA:610,2
DA:611,3
DA:612,3
DA:613,3
DA:614,0
LF:259
@@ -964,7 +964,7 @@ DA:841,0
DA:842,0
DA:843,0
DA:886,1
DA:887,1
DA:887,2
DA:888,1
DA:892,1
DA:893,2
@@ -1061,8 +1061,8 @@ FNDA:0,Label::pass
FNDA:0,Label::read
FNDA:0,Label::rejected
FNDA:0,Label::run
FNDA:4,Label::using
FNDA:4,Label::fmt_using
FNDA:2,Label::using
FNDA:2,Label::fmt_using
FNDA:1,add_dot_slash
FNDA:1,add_forward_slash
FNDA:0,download_binary
@@ -1106,11 +1106,11 @@ DA:71,0
DA:73,0
DA:74,0
DA:75,0
DA:77,4
DA:78,4
DA:80,4
DA:81,4
DA:82,4
DA:77,2
DA:78,2
DA:80,2
DA:81,2
DA:82,2
DA:86,1
DA:87,2
DA:88,2
@@ -1149,8 +1149,8 @@ DA:184,1
DA:185,1
DA:186,4
DA:187,2
DA:202,3
DA:203,3
DA:202,2
DA:203,1
DA:206,1
DA:207,3
DA:219,1
@@ -1175,12 +1175,12 @@ DA:268,2
DA:269,2
DA:270,4
DA:271,3
DA:272,9
DA:272,10
DA:273,6
DA:275,1
DA:276,3
DA:277,1
DA:280,1
DA:280,2
DA:282,1
DA:283,3
DA:285,1
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ impl Config {
            .to_string();
        envs.extend(EnvironmentValue::get_from_serde(&module_vars));
        envs.insert("INPUT".to_string(), input.unwrap_or_default());
        envs.insert("INPUT_PARENT".to_string(), parent);
        envs.insert("PARENT_DIRECTORY".to_string(), parent);
        println!("Envs: {:#?}", envs);
        envs
    }