Don't run installer every time.

This commit is contained in:
Ryan McQuen 2020-07-16 12:06:56 -07:00 committed by GitHub
parent 1fe09ab18d
commit 2915643f57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,2 @@
language = "rust"
run = "./install.sh && ~/.cargo/bin/rustlings watch"
run = "[ -x ~/.cargo/bin/rustlings ] && ~/.cargo/bin/rustlings watch || ./install.sh"