Skip to content

Commit

Permalink
Add documentation for interpreter-args-quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed May 16, 2012
1 parent 05d4b40 commit 8bfa61a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/en/developer/02-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,11 @@ Optional entries:
script. This can be a single binary path, e.g. `/bin/bash`, or include
any args to the command, such as `/bin/bash -c`.
* `script-args` - the arguments to use when executing the script file.
* `interpreter-args-quoted` - true/false - (default false). If true, the execution will
be done by passing the file and args as a single argument to the interpreter:
`${interpreter} "${file} ${arg1} ${arg2}..."`. If false,
the execution will be done by passing the file and args as separate arguments:
`${interpreter} ${file} ${arg1} ${arg2}...`

### Configurable Resource Model Source Script Plugin

Expand Down

0 comments on commit 8bfa61a

Please sign in to comment.