Is it possible to use a build executable that requires a subcommand? #4150
Answered
by
HealthyPear
HealthyPear
asked this question in
Q&A
-
What I mean is the equivalent of this, {
"latex-workshop.latex.external.build.command": "my_executable build",
"latex-workshop.latex.external.build.args": ["--some-flag"]
} or "latex-workshop.latex.tools": [
{
"name": "my_executable",
"command": "my_executable build",
"args": [
"--some-flag",
],
"env": {}
},
], which do not work because the command is supposed to be a single executable and it fails with
|
Beta Was this translation helpful? Give feedback.
Answered by
HealthyPear
Jan 30, 2024
Replies: 1 comment
-
OK for the first case the solution is "latex-workshop.latex.external.build.command": "my_executable",
"latex-workshop.latex.external.build.args": [
"build",
"--some-flag"
], |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jlelong
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK for the first case the solution is