diff --git a/README.md b/README.md index 3f6fd94..bc32d56 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,9 @@ Setup: 2. Copy sample.tsv into localData. Tweak the repo names and dates, and/or add any lines you need to, to add more repos. 3. You may also need to give the script permissions to run, e.g.: ```bash - cd sustainable-communities-tracker/src + #go to the folder containing the script + cd sustainable-communities-tracker/src/localMethods + #change the script to be executable chmod +x localMethods.sh ``` diff --git a/package.json b/package.json index 839298e..278f789 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "mocha", "testSingle" : "mocha ./test/testSingleMethods.js", - "localMethods" : "./src/localMethods.sh" + "localMethods" : "./src/localMethods/localMethods.sh" }, "repository": { diff --git a/src/localMethods.sh b/src/localMethods/localMethods.sh similarity index 100% rename from src/localMethods.sh rename to src/localMethods/localMethods.sh