From 145a7a2649e60c666f61b5278a3e413c4ae69ad5 Mon Sep 17 00:00:00 2001 From: Ken Date: Wed, 4 Aug 2021 17:27:05 -0400 Subject: [PATCH] Added sync command --- evt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/evt b/evt index 0c4e205..62bba96 100755 --- a/evt +++ b/evt @@ -24,7 +24,11 @@ case $1 in setup) ./setup-evt.sh ;; + sync) + unlink ./evio-tools + ln -s scripts/evio-tools-v$2.sh ./evio-tools + ;; *) - ./scripts/evio-tools-v20.7.2 "$@" + ./evio-tools "$@" ;; esac