Skip to content

Commit e41db8f

Browse files
committed
bash
1 parent 9f2f85e commit e41db8f

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

ppx/test/component-without-make.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Since we generate invalid syntax for the argument of the make fn `(Props : <>)`
22
We need to output ML syntax here, otherwise refmt could not parse it.
3-
$ ../ppx.sh --output ml input.re
3+
$ bash ../ppx.sh --output ml input.re
44
module X_as_main_function =
55
struct
66
external xProps : ?key:string -> unit -> < > Js.t = ""[@@mel.obj ]

ppx/test/component.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Since we generate invalid syntax for the argument of the make fn `(Props : <>)`
22
We need to output ML syntax here, otherwise refmt could not parse it.
3-
$ ../ppx.sh --output ml input.re
3+
$ bash ../ppx.sh --output ml input.re
44
module React_component_with_props =
55
struct
66
external makeProps :

ppx/test/external.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ ../ppx.sh --output re input.re
1+
$ bash ../ppx.sh --output re input.re
22
module External = {
33
[@mel.obj]
44
external componentProps:

ppx/test/fragment.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ ../ppx.sh --output re input.re
1+
$ bash ../ppx.sh --output re input.re
22
let fragment = foo =>
33
[@bla]
44
React.jsx(

ppx/test/functor.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Since we generate invalid syntax for the argument of the make fn `(Props : <>)`
22
We need to output ML syntax here, otherwise refmt could not parse it.
3-
$ ../ppx.sh --output ml input.re
3+
$ bash ../ppx.sh --output ml input.re
44
module type X_int = sig val x : int end
55
module Func(M:X_int) =
66
struct

ppx/test/lower.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ ../ppx.sh --output re input.re
1+
$ bash ../ppx.sh --output re input.re
22
let lower = ReactDOM.jsx("div", ([@merlin.hide] ReactDOM.domProps)());
33
let lower_empty_attr =
44
ReactDOM.jsx("div", ([@merlin.hide] ReactDOM.domProps)(~className="", ()));

ppx/test/record-props-error.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Since we generate invalid syntax for the argument of the make fn `(Props : <>)`
22
We need to output ML syntax here, otherwise refmt could not parse it.
3-
$ ../ppx.sh --output ml input.re
3+
$ bash ../ppx.sh --output ml input.re
44
File "output.ml", line 5, characters 68-76:
55
5 | no_props
66
^^^^^^^^

ppx/test/record-props.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Since we generate invalid syntax for the argument of the make fn `(Props : <>)`
22
We need to output ML syntax here, otherwise refmt could not parse it.
3-
$ ../ppx.sh --output ml input.re
3+
$ bash ../ppx.sh --output ml input.re
44
module Record_props =
55
struct
66
external makeProps :

ppx/test/signature-optional.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ ../ppx.sh --output ml input.re
1+
$ bash ../ppx.sh --output ml input.re
22
module Greeting :
33
sig
44
external makeProps :

ppx/test/signature.t/run.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ ../ppx.sh --output re input.re
1+
$ bash ../ppx.sh --output re input.re
22
module Example = {
33
[@mel.obj]
44
external makeProps:

0 commit comments

Comments
 (0)