Change name of Run binding for actions

* Change
```
Run: {command: <path>, args: [ARGS], direction:<direction> }
```
into
```
Run: {cmd: <path>, args: [ARGS], direction:<direction> }
```
This commit is contained in:
a-kenji 2021-07-06 23:37:53 +02:00
parent eb7f0773c5
commit af86edcf99

View File

@ -19,6 +19,7 @@ pub struct RunCommand {
/// Intermediate representation
#[derive(Clone, Debug, Deserialize, Default, Serialize, PartialEq, Eq)]
pub struct RunCommandAction {
#[serde(rename = "cmd")]
pub command: PathBuf,
#[serde(default)]
pub args: Vec<String>,