Skip to content

Commit

Permalink
Merge pull request #33 from yukihirop/fix_makefile
Browse files Browse the repository at this point in the history
Fix fail make create_man
  • Loading branch information
yukihirop authored Dec 24, 2020
2 parents ec62523 + 503e10d commit 7206314
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "ultraman"
version = "0.1.0"
version = "0.1.1"
authors = ["yukihirop <[email protected]>"]
repository = "https://github.com/yukihirop/ultraman"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export LONG_VERSION
.PHONY: create_man man install_man test release_linux release_win release_mac

create_man:
cargo run --bin man --features man > ./tmp/ultraman.1;
if [ ! -d ./tmp ]; then mkdir ./tmp; fi && cargo run --bin man --features man > ./tmp/ultraman.1;

man: create_man
man ./tmp/ultraman.1;
Expand Down

0 comments on commit 7206314

Please sign in to comment.