From 249848dc525bcf6234928ba3c570d895b903c813 Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 13 Dec 2024 11:01:11 +0900 Subject: [PATCH] ops: Add version prints to start script --- start | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/start b/start index 3b428e8..b7c4c1d 100755 --- a/start +++ b/start @@ -122,6 +122,12 @@ case "${2}" in generate_popular_scripts exit 0 ;; + version) + echo "[*] Only print versions, then exit" + cargo run --bin electrs --release -- --version + cargo run --bin popular-scripts --release -- --version + exit 0 + ;; "") # If the 2nd arg isn't passed, just run the normal electrs script as-is ;;