From baecf7edb4ce0cd298a308c9a1db8adb43158b7e Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Mon, 1 Nov 2010 20:09:15 -0500 Subject: [PATCH] Move scripts into their own directory. --- README.md | 6 ++---- repl.sh => script/repl | 0 repl.bat => script/repl.bat | 0 run.sh => script/run | 0 run.bat => script/run.bat | 0 test.sh => script/test | 0 test.bat => script/test.bat | 0 7 files changed, 2 insertions(+), 4 deletions(-) rename repl.sh => script/repl (100%) rename repl.bat => script/repl.bat (100%) rename run.sh => script/run (100%) rename run.bat => script/run.bat (100%) rename test.sh => script/test (100%) rename test.bat => script/test.bat (100%) diff --git a/README.md b/README.md index 5854c5e..80a9b70 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,9 @@ which will download all dependencies you need to run the Clojure koans. To run the koans, simply run -`run.sh` +`script/run` on Mac/\*nix -or, on Windows, - -`run.bat` +`script\run` on Windows You'll see something like this: diff --git a/repl.sh b/script/repl similarity index 100% rename from repl.sh rename to script/repl diff --git a/repl.bat b/script/repl.bat similarity index 100% rename from repl.bat rename to script/repl.bat diff --git a/run.sh b/script/run similarity index 100% rename from run.sh rename to script/run diff --git a/run.bat b/script/run.bat similarity index 100% rename from run.bat rename to script/run.bat diff --git a/test.sh b/script/test similarity index 100% rename from test.sh rename to script/test diff --git a/test.bat b/script/test.bat similarity index 100% rename from test.bat rename to script/test.bat