From 615ef6e80bb9de22cbe96a29cbdd644e7482bc2d Mon Sep 17 00:00:00 2001 From: "phil@volguine.com" Date: Fri, 13 Oct 2023 23:48:57 +0000 Subject: [PATCH] Rename script (its a shell script not an sql file!) --- backfill.sh | 4 ++-- init_db.sql => init_db.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename init_db.sql => init_db.sh (100%) diff --git a/backfill.sh b/backfill.sh index 9d55407..f3e2516 100755 --- a/backfill.sh +++ b/backfill.sh @@ -25,9 +25,9 @@ fi PROG="./dist-newstyle/build/x86_64-linux/ghc-9.2.8/chan-delorean-0.0.1/x/chan-delorean/build/chan-delorean/chan-delorean" -# Ensure your_program is compiled and available +# Ensure chan-delorean is compiled and available if ! command -v $PROG >/dev/null; then - echo "Error: your_program is not compiled or not in the PATH!" + echo "Error: chan-delorean is not compiled or not in the PATH!" exit 1 fi diff --git a/init_db.sql b/init_db.sh similarity index 100% rename from init_db.sql rename to init_db.sh