Skip to content

Commit

Permalink
chore(release): 0.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Feb 12, 2024
1 parent 0f5260d commit c4b280f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
10 changes: 5 additions & 5 deletions 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
Expand Up @@ -3,7 +3,7 @@ members = ["proto", "doseid", "proxy", "util", 'dctl']
resolver = "2"

[workspace.package]
version = "0.0.16"
version = "0.0.17"
license = "Apache-2.0"
repository = "https://github.com/doseiai/engine"
authors = [
Expand Down
6 changes: 4 additions & 2 deletions dctl/src/command/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ pub fn export() {
.arg("from dosei_sdk import main\nmain.export()")
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
.output() {
.output()
{
eprintln!("{:?}", err);
};
}
Expand All @@ -28,7 +29,8 @@ pub fn export() {
.env("NODE_PATH", ".")
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
.output() {
.output()
{
eprintln!("{:?}", err);
};
}
Expand Down
5 changes: 3 additions & 2 deletions dctl/src/command/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@ pub fn run(arg_matches: &ArgMatches) {
"py" => {
let arg = match function {
Some(command) => format!("from dosei_sdk import main\nmain.run(\"{}\")", command),
None => "from dosei_sdk import main\nmain.run()".to_string()
None => "from dosei_sdk import main\nmain.run()".to_string(),
};
if let Err(err) = std::process::Command::new("python3")
.arg("-c")
.arg(arg)
.stdout(Stdio::inherit())
.stderr(Stdio::inherit())
.output() {
.output()
{
eprintln!("{:?}", err);
};
}
Expand Down

0 comments on commit c4b280f

Please sign in to comment.