Compare commits

..

No commits in common. "2005c430669f1c6c2636090f5e836304b2787a20" and "60b7dc42199d7218416c9848899bbbae80d8b4f3" have entirely different histories.

3 changed files with 926 additions and 977 deletions

1891
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -12,16 +12,16 @@ exclude = ["/aux/"]
[dependencies]
actix-web = "3.0"
actix-rt = "1.1"
clap = { version = "3.0.0-beta.1", features = ["wrap_help"] }
dirs = "3.0"
handlebars = "3.5"
hotwatch = "0.4"
log = "0.4"
percent-encoding = "2.1"
serde = "1.0"
serde_yaml = "0.8"
serde_json = "1.0"
handlebars = "3.5"
hotwatch = "0.4"
percent-encoding = "2.1"
log = "0.4"
simple_logger = "1.3"
clap = { version = "3.0.0-beta.1", features = ["wrap_help"] }
[dev-dependencies]
tempfile = "3.1"

View file

@ -217,7 +217,7 @@ enum HopAction {
/// file.
fn resolve_path(path: PathBuf, args: &str) -> Result<HopAction, BunBunError> {
let output = Command::new(path.canonicalize()?)
.args(args.split(' '))
.args(args.split(" "))
.output()?;
if output.status.success() {