diff options
| author | lyn <819880950@qq.com> | 2019-03-06 21:47:00 +0100 |
|---|---|---|
| committer | lyn <819880950@qq.com> | 2019-03-06 21:47:33 +0100 |
| commit | 70e59cca3caf92a1daedac4fcf5d8940215e5529 (patch) | |
| tree | e2a8f58ffe5717ec7a08407ae4d1ee70945ab37e /src/main.rs | |
| parent | 7d6e2812fb7b22ff673f753cfc2a7c44fa1c57b8 (diff) | |
standardize exercise running via an external toml file
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index de13f1c..39f11dc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -48,7 +48,7 @@ fn main() { } if let Some(matches) = matches.subcommand_matches("run") { - run(matches.clone()); + run(matches.clone()).unwrap(); } if let Some(_) = matches.subcommand_matches("verify") { |
