-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Watched install targets #32
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cargo watch -x 'run-script install'
seems to loop indefinitely on my machine (i.e. pip install ...
-ing over and over).
Try |
The merge-base changed after approval.
e63edab
to
c39600f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cargo watch -x 'run-script install'
seems to loop indefinitely on my machine (i.e.pip install ...
-ing over and over).Try
cargo watch -w src -x 'run-script install'
to only watch thesrc
directory. It might be watching build directories.
If that's the case, let's add it to the Makefile
. N.B. Seems like it should also be watching Cargo.toml
.
92a8410
to
57dc5e5
Compare
c7d552d
to
e51c58b
Compare
e51c58b
to
012cef3
Compare
(closes #31)
It also introduces optimized versions of install targets.