From 2915643f574ea252fcb75768f85085e3ed197072 Mon Sep 17 00:00:00 2001 From: Ryan McQuen <rpcm@linux.com> Date: Thu, 16 Jul 2020 12:06:56 -0700 Subject: [PATCH] Don't run installer every time. --- .replit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.replit b/.replit index 7f0966d..8462a6f 100644 --- a/.replit +++ b/.replit @@ -1,2 +1,2 @@ language = "rust" -run = "./install.sh && ~/.cargo/bin/rustlings watch" +run = "[ -x ~/.cargo/bin/rustlings ] && ~/.cargo/bin/rustlings watch || ./install.sh"