Test errors in duckscript based tests will break build flow

This commit is contained in:
sagie gur ari 2020-01-21 20:49:09 +00:00
parent b3d7ca0ac0
commit 5d4a2028fc
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
### v0.1.8
* Test errors in duckscript based tests will break build flow.
* New --version cli option.
* New version functions and commands for duckscript and duckscript SDK.
* New replace command.

View file

@ -129,7 +129,7 @@ static DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");
fn main() {
match run_cli() {
Err(error) => println!("Error: {}", error),
Err(error) => panic!("Error: {}", error),
_ => (),
};
}