From ee6d7f9c27af3cbd329410aed690c6b7a08d1289 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 10 Nov 2025 10:15:41 +0300 Subject: [PATCH] Move all scripts to a single directory --- .gitignore | 6 ++---- run_tests.sh => scripts/run_tests.sh | 0 2 files changed, 2 insertions(+), 4 deletions(-) rename run_tests.sh => scripts/run_tests.sh (100%) diff --git a/.gitignore b/.gitignore index 9d46417..1876805 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ .DS_Store node_modules /*.json +*.sh # We do not want to commit any log files that we produce from running the code locally so this is # added to the .gitignore file. @@ -13,7 +14,4 @@ workdir !/schema.json !/dev-genesis.json - -# Ignore all shell scripts except for the `run_tests.sh` script -*.sh -!run_tests.sh \ No newline at end of file +!/scripts/* diff --git a/run_tests.sh b/scripts/run_tests.sh similarity index 100% rename from run_tests.sh rename to scripts/run_tests.sh