File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
for file in src/* .{res,resi}; do
2
2
output=" $( dirname $file ) /expected/$( basename $file ) .txt"
3
- ../../rescript-editor-analysis.exe test $file & > $output
3
+ ../../_build/install/default/bin/ rescript-editor-analysis test $file & > $output
4
4
# CI. We use LF, and the CI OCaml fork prints CRLF. Convert.
5
5
if [ " $RUNNER_OS " == " Windows" ]; then
6
6
perl -pi -e ' s/\r\n/\n/g' -- $output
9
9
10
10
for file in not_compiled/* .{res,resi}; do
11
11
output=" $( dirname $file ) /expected/$( basename $file ) .txt"
12
- ../../rescript-editor-analysis.exe test $file & > $output
12
+ ../../_build/install/default/bin/ rescript-editor-analysis test $file & > $output
13
13
# CI. We use LF, and the CI OCaml fork prints CRLF. Convert.
14
14
if [ " $RUNNER_OS " == " Windows" ]; then
15
15
perl -pi -e ' s/\r\n/\n/g' -- $output
Original file line number Diff line number Diff line change 1
1
for file in src/* .{res,resi}; do
2
2
output=" $( dirname $file ) /expected/$( basename $file ) .json"
3
- dune exec --no-print-directory -- rescript-tools doc $file > $output
3
+ ../../_build/install/default/bin/ rescript-tools doc $file > $output
4
4
# # CI. We use LF, and the CI OCaml fork prints CRLF. Convert.
5
5
if [ " $RUNNER_OS " == " Windows" ]; then
6
6
perl -pi -e ' s/\r\n/\n/g' -- $output
You can’t perform that action at this time.
0 commit comments