We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2883365 commit 068fa3bCopy full SHA for 068fa3b
CONTRIBUTING.md
@@ -48,7 +48,6 @@ regenerate some of these there are helper scripts in tools directory:
48
# Remove file you want to regenerate
49
rm tests/data/parser/parse.out
50
51
-# Run the generator in the tools directory
52
-cd tools
53
-./run_generators.sh
+# Run the generator located in the tools directory
+./tools/run_generators.sh
54
```
tools/run_generators.sh
@@ -6,5 +6,12 @@ export LC_ALL=C
6
# Runs the test and context generators.
7
#
8
9
+BASE="$(dirname $0)"
10
+
11
+echo "Using base dir: $BASE"
12
+cd $BASE
13
14
php ContextGenerator.php contexts/ ../src/Contexts
15
php TestGenerator.php ../tests/data ../tests/data
16
17
+echo "Done."
0 commit comments