doc-detective-common 4.26.8 → 4.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +522 -64
- package/dist/schemas/schemas.json +522 -64
- package/dist/types/generated/config_v3.d.ts +10 -2
- package/dist/types/generated/config_v3.d.ts.map +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +10 -2
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/runShell_v3.d.ts +6 -2
- package/dist/types/generated/runShell_v3.d.ts.map +1 -1
- package/dist/types/generated/step_v3.d.ts +6 -2
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +12 -4
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -22408,7 +22408,7 @@ var schemas_default = {
|
|
|
22408
22408
|
anyOf: [
|
|
22409
22409
|
{
|
|
22410
22410
|
title: "Run shell command (simple)",
|
|
22411
|
-
description: "Command to perform in the
|
|
22411
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
22412
22412
|
type: "string",
|
|
22413
22413
|
transform: [
|
|
22414
22414
|
"trim"
|
|
@@ -22423,7 +22423,16 @@ var schemas_default = {
|
|
|
22423
22423
|
properties: {
|
|
22424
22424
|
command: {
|
|
22425
22425
|
type: "string",
|
|
22426
|
-
description: "Command to perform in the
|
|
22426
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
22427
|
+
},
|
|
22428
|
+
shell: {
|
|
22429
|
+
type: "string",
|
|
22430
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
22431
|
+
enum: [
|
|
22432
|
+
"bash",
|
|
22433
|
+
"cmd",
|
|
22434
|
+
"powershell"
|
|
22435
|
+
]
|
|
22427
22436
|
},
|
|
22428
22437
|
args: {
|
|
22429
22438
|
type: "array",
|
|
@@ -22550,7 +22559,7 @@ var schemas_default = {
|
|
|
22550
22559
|
schemas: {
|
|
22551
22560
|
string: {
|
|
22552
22561
|
title: "Run shell command (simple)",
|
|
22553
|
-
description: "Command to perform in the
|
|
22562
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
22554
22563
|
type: "string",
|
|
22555
22564
|
transform: [
|
|
22556
22565
|
"trim"
|
|
@@ -22565,7 +22574,16 @@ var schemas_default = {
|
|
|
22565
22574
|
properties: {
|
|
22566
22575
|
command: {
|
|
22567
22576
|
type: "string",
|
|
22568
|
-
description: "Command to perform in the
|
|
22577
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
22578
|
+
},
|
|
22579
|
+
shell: {
|
|
22580
|
+
type: "string",
|
|
22581
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
22582
|
+
enum: [
|
|
22583
|
+
"bash",
|
|
22584
|
+
"cmd",
|
|
22585
|
+
"powershell"
|
|
22586
|
+
]
|
|
22569
22587
|
},
|
|
22570
22588
|
args: {
|
|
22571
22589
|
type: "array",
|
|
@@ -22691,6 +22709,15 @@ var schemas_default = {
|
|
|
22691
22709
|
},
|
|
22692
22710
|
examples: [
|
|
22693
22711
|
"docker run hello-world",
|
|
22712
|
+
{
|
|
22713
|
+
command: "echo %USERNAME%",
|
|
22714
|
+
shell: "cmd"
|
|
22715
|
+
},
|
|
22716
|
+
{
|
|
22717
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
22718
|
+
shell: "bash",
|
|
22719
|
+
stdio: "bashism"
|
|
22720
|
+
},
|
|
22694
22721
|
{
|
|
22695
22722
|
command: "echo",
|
|
22696
22723
|
args: [
|
|
@@ -48078,7 +48105,7 @@ var schemas_default = {
|
|
|
48078
48105
|
anyOf: [
|
|
48079
48106
|
{
|
|
48080
48107
|
title: "Run shell command (simple)",
|
|
48081
|
-
description: "Command to perform in the
|
|
48108
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
48082
48109
|
type: "string",
|
|
48083
48110
|
transform: [
|
|
48084
48111
|
"trim"
|
|
@@ -48093,7 +48120,16 @@ var schemas_default = {
|
|
|
48093
48120
|
properties: {
|
|
48094
48121
|
command: {
|
|
48095
48122
|
type: "string",
|
|
48096
|
-
description: "Command to perform in the
|
|
48123
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
48124
|
+
},
|
|
48125
|
+
shell: {
|
|
48126
|
+
type: "string",
|
|
48127
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
48128
|
+
enum: [
|
|
48129
|
+
"bash",
|
|
48130
|
+
"cmd",
|
|
48131
|
+
"powershell"
|
|
48132
|
+
]
|
|
48097
48133
|
},
|
|
48098
48134
|
args: {
|
|
48099
48135
|
type: "array",
|
|
@@ -48220,7 +48256,7 @@ var schemas_default = {
|
|
|
48220
48256
|
schemas: {
|
|
48221
48257
|
string: {
|
|
48222
48258
|
title: "Run shell command (simple)",
|
|
48223
|
-
description: "Command to perform in the
|
|
48259
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
48224
48260
|
type: "string",
|
|
48225
48261
|
transform: [
|
|
48226
48262
|
"trim"
|
|
@@ -48235,7 +48271,16 @@ var schemas_default = {
|
|
|
48235
48271
|
properties: {
|
|
48236
48272
|
command: {
|
|
48237
48273
|
type: "string",
|
|
48238
|
-
description: "Command to perform in the
|
|
48274
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
48275
|
+
},
|
|
48276
|
+
shell: {
|
|
48277
|
+
type: "string",
|
|
48278
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
48279
|
+
enum: [
|
|
48280
|
+
"bash",
|
|
48281
|
+
"cmd",
|
|
48282
|
+
"powershell"
|
|
48283
|
+
]
|
|
48239
48284
|
},
|
|
48240
48285
|
args: {
|
|
48241
48286
|
type: "array",
|
|
@@ -48361,6 +48406,15 @@ var schemas_default = {
|
|
|
48361
48406
|
},
|
|
48362
48407
|
examples: [
|
|
48363
48408
|
"docker run hello-world",
|
|
48409
|
+
{
|
|
48410
|
+
command: "echo %USERNAME%",
|
|
48411
|
+
shell: "cmd"
|
|
48412
|
+
},
|
|
48413
|
+
{
|
|
48414
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
48415
|
+
shell: "bash",
|
|
48416
|
+
stdio: "bashism"
|
|
48417
|
+
},
|
|
48364
48418
|
{
|
|
48365
48419
|
command: "echo",
|
|
48366
48420
|
args: [
|
|
@@ -48862,6 +48916,16 @@ var schemas_default = {
|
|
|
48862
48916
|
type: "boolean",
|
|
48863
48917
|
default: true
|
|
48864
48918
|
},
|
|
48919
|
+
shell: {
|
|
48920
|
+
description: "Default shell for `runShell` steps (and `runCode`'s shell-based execution). `runShell` steps can override this value with their own `shell` field. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
48921
|
+
type: "string",
|
|
48922
|
+
enum: [
|
|
48923
|
+
"bash",
|
|
48924
|
+
"cmd",
|
|
48925
|
+
"powershell"
|
|
48926
|
+
],
|
|
48927
|
+
default: "bash"
|
|
48928
|
+
},
|
|
48865
48929
|
cacheDir: {
|
|
48866
48930
|
description: "Directory for lazy-installed runtime assets (heavy npm packages, browser binaries, ffmpeg). Defaults to `<os.tmpdir()>/doc-detective/`. Override here, with the `DOC_DETECTIVE_CACHE_DIR` env var, or with `--cache-dir` on the CLI when the default temp location is unsuitable (e.g., baked container images where temp gets cleared on reboot).",
|
|
48867
48931
|
type: "string",
|
|
@@ -67983,7 +68047,7 @@ var schemas_default = {
|
|
|
67983
68047
|
anyOf: [
|
|
67984
68048
|
{
|
|
67985
68049
|
title: "Run shell command (simple)",
|
|
67986
|
-
description: "Command to perform in the
|
|
68050
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
67987
68051
|
type: "string",
|
|
67988
68052
|
transform: [
|
|
67989
68053
|
"trim"
|
|
@@ -67998,7 +68062,16 @@ var schemas_default = {
|
|
|
67998
68062
|
properties: {
|
|
67999
68063
|
command: {
|
|
68000
68064
|
type: "string",
|
|
68001
|
-
description: "Command to perform in the
|
|
68065
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
68066
|
+
},
|
|
68067
|
+
shell: {
|
|
68068
|
+
type: "string",
|
|
68069
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
68070
|
+
enum: [
|
|
68071
|
+
"bash",
|
|
68072
|
+
"cmd",
|
|
68073
|
+
"powershell"
|
|
68074
|
+
]
|
|
68002
68075
|
},
|
|
68003
68076
|
args: {
|
|
68004
68077
|
type: "array",
|
|
@@ -68125,7 +68198,7 @@ var schemas_default = {
|
|
|
68125
68198
|
schemas: {
|
|
68126
68199
|
string: {
|
|
68127
68200
|
title: "Run shell command (simple)",
|
|
68128
|
-
description: "Command to perform in the
|
|
68201
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
68129
68202
|
type: "string",
|
|
68130
68203
|
transform: [
|
|
68131
68204
|
"trim"
|
|
@@ -68140,7 +68213,16 @@ var schemas_default = {
|
|
|
68140
68213
|
properties: {
|
|
68141
68214
|
command: {
|
|
68142
68215
|
type: "string",
|
|
68143
|
-
description: "Command to perform in the
|
|
68216
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
68217
|
+
},
|
|
68218
|
+
shell: {
|
|
68219
|
+
type: "string",
|
|
68220
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
68221
|
+
enum: [
|
|
68222
|
+
"bash",
|
|
68223
|
+
"cmd",
|
|
68224
|
+
"powershell"
|
|
68225
|
+
]
|
|
68144
68226
|
},
|
|
68145
68227
|
args: {
|
|
68146
68228
|
type: "array",
|
|
@@ -68266,6 +68348,15 @@ var schemas_default = {
|
|
|
68266
68348
|
},
|
|
68267
68349
|
examples: [
|
|
68268
68350
|
"docker run hello-world",
|
|
68351
|
+
{
|
|
68352
|
+
command: "echo %USERNAME%",
|
|
68353
|
+
shell: "cmd"
|
|
68354
|
+
},
|
|
68355
|
+
{
|
|
68356
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
68357
|
+
shell: "bash",
|
|
68358
|
+
stdio: "bashism"
|
|
68359
|
+
},
|
|
68269
68360
|
{
|
|
68270
68361
|
command: "echo",
|
|
68271
68362
|
args: [
|
|
@@ -93753,6 +93844,9 @@ var schemas_default = {
|
|
|
93753
93844
|
},
|
|
93754
93845
|
examples: [
|
|
93755
93846
|
{},
|
|
93847
|
+
{
|
|
93848
|
+
shell: "powershell"
|
|
93849
|
+
},
|
|
93756
93850
|
{
|
|
93757
93851
|
input: ".",
|
|
93758
93852
|
output: ".",
|
|
@@ -126879,7 +126973,7 @@ var schemas_default = {
|
|
|
126879
126973
|
anyOf: [
|
|
126880
126974
|
{
|
|
126881
126975
|
title: "Run shell command (simple)",
|
|
126882
|
-
description: "Command to perform in the
|
|
126976
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
126883
126977
|
type: "string",
|
|
126884
126978
|
transform: [
|
|
126885
126979
|
"trim"
|
|
@@ -126894,7 +126988,16 @@ var schemas_default = {
|
|
|
126894
126988
|
properties: {
|
|
126895
126989
|
command: {
|
|
126896
126990
|
type: "string",
|
|
126897
|
-
description: "Command to perform in the
|
|
126991
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
126992
|
+
},
|
|
126993
|
+
shell: {
|
|
126994
|
+
type: "string",
|
|
126995
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
126996
|
+
enum: [
|
|
126997
|
+
"bash",
|
|
126998
|
+
"cmd",
|
|
126999
|
+
"powershell"
|
|
127000
|
+
]
|
|
126898
127001
|
},
|
|
126899
127002
|
args: {
|
|
126900
127003
|
type: "array",
|
|
@@ -127021,7 +127124,7 @@ var schemas_default = {
|
|
|
127021
127124
|
schemas: {
|
|
127022
127125
|
string: {
|
|
127023
127126
|
title: "Run shell command (simple)",
|
|
127024
|
-
description: "Command to perform in the
|
|
127127
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
127025
127128
|
type: "string",
|
|
127026
127129
|
transform: [
|
|
127027
127130
|
"trim"
|
|
@@ -127036,7 +127139,16 @@ var schemas_default = {
|
|
|
127036
127139
|
properties: {
|
|
127037
127140
|
command: {
|
|
127038
127141
|
type: "string",
|
|
127039
|
-
description: "Command to perform in the
|
|
127142
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
127143
|
+
},
|
|
127144
|
+
shell: {
|
|
127145
|
+
type: "string",
|
|
127146
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
127147
|
+
enum: [
|
|
127148
|
+
"bash",
|
|
127149
|
+
"cmd",
|
|
127150
|
+
"powershell"
|
|
127151
|
+
]
|
|
127040
127152
|
},
|
|
127041
127153
|
args: {
|
|
127042
127154
|
type: "array",
|
|
@@ -127162,6 +127274,15 @@ var schemas_default = {
|
|
|
127162
127274
|
},
|
|
127163
127275
|
examples: [
|
|
127164
127276
|
"docker run hello-world",
|
|
127277
|
+
{
|
|
127278
|
+
command: "echo %USERNAME%",
|
|
127279
|
+
shell: "cmd"
|
|
127280
|
+
},
|
|
127281
|
+
{
|
|
127282
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
127283
|
+
shell: "bash",
|
|
127284
|
+
stdio: "bashism"
|
|
127285
|
+
},
|
|
127165
127286
|
{
|
|
127166
127287
|
command: "echo",
|
|
127167
127288
|
args: [
|
|
@@ -152549,7 +152670,7 @@ var schemas_default = {
|
|
|
152549
152670
|
anyOf: [
|
|
152550
152671
|
{
|
|
152551
152672
|
title: "Run shell command (simple)",
|
|
152552
|
-
description: "Command to perform in the
|
|
152673
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
152553
152674
|
type: "string",
|
|
152554
152675
|
transform: [
|
|
152555
152676
|
"trim"
|
|
@@ -152564,7 +152685,16 @@ var schemas_default = {
|
|
|
152564
152685
|
properties: {
|
|
152565
152686
|
command: {
|
|
152566
152687
|
type: "string",
|
|
152567
|
-
description: "Command to perform in the
|
|
152688
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
152689
|
+
},
|
|
152690
|
+
shell: {
|
|
152691
|
+
type: "string",
|
|
152692
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
152693
|
+
enum: [
|
|
152694
|
+
"bash",
|
|
152695
|
+
"cmd",
|
|
152696
|
+
"powershell"
|
|
152697
|
+
]
|
|
152568
152698
|
},
|
|
152569
152699
|
args: {
|
|
152570
152700
|
type: "array",
|
|
@@ -152691,7 +152821,7 @@ var schemas_default = {
|
|
|
152691
152821
|
schemas: {
|
|
152692
152822
|
string: {
|
|
152693
152823
|
title: "Run shell command (simple)",
|
|
152694
|
-
description: "Command to perform in the
|
|
152824
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
152695
152825
|
type: "string",
|
|
152696
152826
|
transform: [
|
|
152697
152827
|
"trim"
|
|
@@ -152706,7 +152836,16 @@ var schemas_default = {
|
|
|
152706
152836
|
properties: {
|
|
152707
152837
|
command: {
|
|
152708
152838
|
type: "string",
|
|
152709
|
-
description: "Command to perform in the
|
|
152839
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
152840
|
+
},
|
|
152841
|
+
shell: {
|
|
152842
|
+
type: "string",
|
|
152843
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
152844
|
+
enum: [
|
|
152845
|
+
"bash",
|
|
152846
|
+
"cmd",
|
|
152847
|
+
"powershell"
|
|
152848
|
+
]
|
|
152710
152849
|
},
|
|
152711
152850
|
args: {
|
|
152712
152851
|
type: "array",
|
|
@@ -152832,6 +152971,15 @@ var schemas_default = {
|
|
|
152832
152971
|
},
|
|
152833
152972
|
examples: [
|
|
152834
152973
|
"docker run hello-world",
|
|
152974
|
+
{
|
|
152975
|
+
command: "echo %USERNAME%",
|
|
152976
|
+
shell: "cmd"
|
|
152977
|
+
},
|
|
152978
|
+
{
|
|
152979
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
152980
|
+
shell: "bash",
|
|
152981
|
+
stdio: "bashism"
|
|
152982
|
+
},
|
|
152835
152983
|
{
|
|
152836
152984
|
command: "echo",
|
|
152837
152985
|
args: [
|
|
@@ -153333,6 +153481,16 @@ var schemas_default = {
|
|
|
153333
153481
|
type: "boolean",
|
|
153334
153482
|
default: true
|
|
153335
153483
|
},
|
|
153484
|
+
shell: {
|
|
153485
|
+
description: "Default shell for `runShell` steps (and `runCode`'s shell-based execution). `runShell` steps can override this value with their own `shell` field. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
153486
|
+
type: "string",
|
|
153487
|
+
enum: [
|
|
153488
|
+
"bash",
|
|
153489
|
+
"cmd",
|
|
153490
|
+
"powershell"
|
|
153491
|
+
],
|
|
153492
|
+
default: "bash"
|
|
153493
|
+
},
|
|
153336
153494
|
cacheDir: {
|
|
153337
153495
|
description: "Directory for lazy-installed runtime assets (heavy npm packages, browser binaries, ffmpeg). Defaults to `<os.tmpdir()>/doc-detective/`. Override here, with the `DOC_DETECTIVE_CACHE_DIR` env var, or with `--cache-dir` on the CLI when the default temp location is unsuitable (e.g., baked container images where temp gets cleared on reboot).",
|
|
153338
153496
|
type: "string",
|
|
@@ -172454,7 +172612,7 @@ var schemas_default = {
|
|
|
172454
172612
|
anyOf: [
|
|
172455
172613
|
{
|
|
172456
172614
|
title: "Run shell command (simple)",
|
|
172457
|
-
description: "Command to perform in the
|
|
172615
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
172458
172616
|
type: "string",
|
|
172459
172617
|
transform: [
|
|
172460
172618
|
"trim"
|
|
@@ -172469,7 +172627,16 @@ var schemas_default = {
|
|
|
172469
172627
|
properties: {
|
|
172470
172628
|
command: {
|
|
172471
172629
|
type: "string",
|
|
172472
|
-
description: "Command to perform in the
|
|
172630
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
172631
|
+
},
|
|
172632
|
+
shell: {
|
|
172633
|
+
type: "string",
|
|
172634
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
172635
|
+
enum: [
|
|
172636
|
+
"bash",
|
|
172637
|
+
"cmd",
|
|
172638
|
+
"powershell"
|
|
172639
|
+
]
|
|
172473
172640
|
},
|
|
172474
172641
|
args: {
|
|
172475
172642
|
type: "array",
|
|
@@ -172596,7 +172763,7 @@ var schemas_default = {
|
|
|
172596
172763
|
schemas: {
|
|
172597
172764
|
string: {
|
|
172598
172765
|
title: "Run shell command (simple)",
|
|
172599
|
-
description: "Command to perform in the
|
|
172766
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
172600
172767
|
type: "string",
|
|
172601
172768
|
transform: [
|
|
172602
172769
|
"trim"
|
|
@@ -172611,7 +172778,16 @@ var schemas_default = {
|
|
|
172611
172778
|
properties: {
|
|
172612
172779
|
command: {
|
|
172613
172780
|
type: "string",
|
|
172614
|
-
description: "Command to perform in the
|
|
172781
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
172782
|
+
},
|
|
172783
|
+
shell: {
|
|
172784
|
+
type: "string",
|
|
172785
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
172786
|
+
enum: [
|
|
172787
|
+
"bash",
|
|
172788
|
+
"cmd",
|
|
172789
|
+
"powershell"
|
|
172790
|
+
]
|
|
172615
172791
|
},
|
|
172616
172792
|
args: {
|
|
172617
172793
|
type: "array",
|
|
@@ -172737,6 +172913,15 @@ var schemas_default = {
|
|
|
172737
172913
|
},
|
|
172738
172914
|
examples: [
|
|
172739
172915
|
"docker run hello-world",
|
|
172916
|
+
{
|
|
172917
|
+
command: "echo %USERNAME%",
|
|
172918
|
+
shell: "cmd"
|
|
172919
|
+
},
|
|
172920
|
+
{
|
|
172921
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
172922
|
+
shell: "bash",
|
|
172923
|
+
stdio: "bashism"
|
|
172924
|
+
},
|
|
172740
172925
|
{
|
|
172741
172926
|
command: "echo",
|
|
172742
172927
|
args: [
|
|
@@ -198224,6 +198409,9 @@ var schemas_default = {
|
|
|
198224
198409
|
},
|
|
198225
198410
|
examples: [
|
|
198226
198411
|
{},
|
|
198412
|
+
{
|
|
198413
|
+
shell: "powershell"
|
|
198414
|
+
},
|
|
198227
198415
|
{
|
|
198228
198416
|
input: ".",
|
|
198229
198417
|
output: ".",
|
|
@@ -219802,7 +219990,7 @@ var schemas_default = {
|
|
|
219802
219990
|
anyOf: [
|
|
219803
219991
|
{
|
|
219804
219992
|
title: "Run shell command (simple)",
|
|
219805
|
-
description: "Command to perform in the
|
|
219993
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
219806
219994
|
type: "string",
|
|
219807
219995
|
transform: [
|
|
219808
219996
|
"trim"
|
|
@@ -219817,7 +220005,16 @@ var schemas_default = {
|
|
|
219817
220005
|
properties: {
|
|
219818
220006
|
command: {
|
|
219819
220007
|
type: "string",
|
|
219820
|
-
description: "Command to perform in the
|
|
220008
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
220009
|
+
},
|
|
220010
|
+
shell: {
|
|
220011
|
+
type: "string",
|
|
220012
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
220013
|
+
enum: [
|
|
220014
|
+
"bash",
|
|
220015
|
+
"cmd",
|
|
220016
|
+
"powershell"
|
|
220017
|
+
]
|
|
219821
220018
|
},
|
|
219822
220019
|
args: {
|
|
219823
220020
|
type: "array",
|
|
@@ -219944,7 +220141,7 @@ var schemas_default = {
|
|
|
219944
220141
|
schemas: {
|
|
219945
220142
|
string: {
|
|
219946
220143
|
title: "Run shell command (simple)",
|
|
219947
|
-
description: "Command to perform in the
|
|
220144
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
219948
220145
|
type: "string",
|
|
219949
220146
|
transform: [
|
|
219950
220147
|
"trim"
|
|
@@ -219959,7 +220156,16 @@ var schemas_default = {
|
|
|
219959
220156
|
properties: {
|
|
219960
220157
|
command: {
|
|
219961
220158
|
type: "string",
|
|
219962
|
-
description: "Command to perform in the
|
|
220159
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
220160
|
+
},
|
|
220161
|
+
shell: {
|
|
220162
|
+
type: "string",
|
|
220163
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
220164
|
+
enum: [
|
|
220165
|
+
"bash",
|
|
220166
|
+
"cmd",
|
|
220167
|
+
"powershell"
|
|
220168
|
+
]
|
|
219963
220169
|
},
|
|
219964
220170
|
args: {
|
|
219965
220171
|
type: "array",
|
|
@@ -220085,6 +220291,15 @@ var schemas_default = {
|
|
|
220085
220291
|
},
|
|
220086
220292
|
examples: [
|
|
220087
220293
|
"docker run hello-world",
|
|
220294
|
+
{
|
|
220295
|
+
command: "echo %USERNAME%",
|
|
220296
|
+
shell: "cmd"
|
|
220297
|
+
},
|
|
220298
|
+
{
|
|
220299
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
220300
|
+
shell: "bash",
|
|
220301
|
+
stdio: "bashism"
|
|
220302
|
+
},
|
|
220088
220303
|
{
|
|
220089
220304
|
command: "echo",
|
|
220090
220305
|
args: [
|
|
@@ -264676,7 +264891,7 @@ var schemas_default = {
|
|
|
264676
264891
|
anyOf: [
|
|
264677
264892
|
{
|
|
264678
264893
|
title: "Run shell command (simple)",
|
|
264679
|
-
description: "Command to perform in the
|
|
264894
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
264680
264895
|
type: "string",
|
|
264681
264896
|
transform: [
|
|
264682
264897
|
"trim"
|
|
@@ -264691,7 +264906,16 @@ var schemas_default = {
|
|
|
264691
264906
|
properties: {
|
|
264692
264907
|
command: {
|
|
264693
264908
|
type: "string",
|
|
264694
|
-
description: "Command to perform in the
|
|
264909
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
264910
|
+
},
|
|
264911
|
+
shell: {
|
|
264912
|
+
type: "string",
|
|
264913
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
264914
|
+
enum: [
|
|
264915
|
+
"bash",
|
|
264916
|
+
"cmd",
|
|
264917
|
+
"powershell"
|
|
264918
|
+
]
|
|
264695
264919
|
},
|
|
264696
264920
|
args: {
|
|
264697
264921
|
type: "array",
|
|
@@ -264818,7 +265042,7 @@ var schemas_default = {
|
|
|
264818
265042
|
schemas: {
|
|
264819
265043
|
string: {
|
|
264820
265044
|
title: "Run shell command (simple)",
|
|
264821
|
-
description: "Command to perform in the
|
|
265045
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
264822
265046
|
type: "string",
|
|
264823
265047
|
transform: [
|
|
264824
265048
|
"trim"
|
|
@@ -264833,7 +265057,16 @@ var schemas_default = {
|
|
|
264833
265057
|
properties: {
|
|
264834
265058
|
command: {
|
|
264835
265059
|
type: "string",
|
|
264836
|
-
description: "Command to perform in the
|
|
265060
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
265061
|
+
},
|
|
265062
|
+
shell: {
|
|
265063
|
+
type: "string",
|
|
265064
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
265065
|
+
enum: [
|
|
265066
|
+
"bash",
|
|
265067
|
+
"cmd",
|
|
265068
|
+
"powershell"
|
|
265069
|
+
]
|
|
264837
265070
|
},
|
|
264838
265071
|
args: {
|
|
264839
265072
|
type: "array",
|
|
@@ -264959,6 +265192,15 @@ var schemas_default = {
|
|
|
264959
265192
|
},
|
|
264960
265193
|
examples: [
|
|
264961
265194
|
"docker run hello-world",
|
|
265195
|
+
{
|
|
265196
|
+
command: "echo %USERNAME%",
|
|
265197
|
+
shell: "cmd"
|
|
265198
|
+
},
|
|
265199
|
+
{
|
|
265200
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
265201
|
+
shell: "bash",
|
|
265202
|
+
stdio: "bashism"
|
|
265203
|
+
},
|
|
264962
265204
|
{
|
|
264963
265205
|
command: "echo",
|
|
264964
265206
|
args: [
|
|
@@ -312511,7 +312753,7 @@ var schemas_default = {
|
|
|
312511
312753
|
anyOf: [
|
|
312512
312754
|
{
|
|
312513
312755
|
title: "Run shell command (simple)",
|
|
312514
|
-
description: "Command to perform in the
|
|
312756
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
312515
312757
|
type: "string",
|
|
312516
312758
|
transform: [
|
|
312517
312759
|
"trim"
|
|
@@ -312526,7 +312768,16 @@ var schemas_default = {
|
|
|
312526
312768
|
properties: {
|
|
312527
312769
|
command: {
|
|
312528
312770
|
type: "string",
|
|
312529
|
-
description: "Command to perform in the
|
|
312771
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
312772
|
+
},
|
|
312773
|
+
shell: {
|
|
312774
|
+
type: "string",
|
|
312775
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
312776
|
+
enum: [
|
|
312777
|
+
"bash",
|
|
312778
|
+
"cmd",
|
|
312779
|
+
"powershell"
|
|
312780
|
+
]
|
|
312530
312781
|
},
|
|
312531
312782
|
args: {
|
|
312532
312783
|
type: "array",
|
|
@@ -312653,7 +312904,7 @@ var schemas_default = {
|
|
|
312653
312904
|
schemas: {
|
|
312654
312905
|
string: {
|
|
312655
312906
|
title: "Run shell command (simple)",
|
|
312656
|
-
description: "Command to perform in the
|
|
312907
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
312657
312908
|
type: "string",
|
|
312658
312909
|
transform: [
|
|
312659
312910
|
"trim"
|
|
@@ -312668,7 +312919,16 @@ var schemas_default = {
|
|
|
312668
312919
|
properties: {
|
|
312669
312920
|
command: {
|
|
312670
312921
|
type: "string",
|
|
312671
|
-
description: "Command to perform in the
|
|
312922
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
312923
|
+
},
|
|
312924
|
+
shell: {
|
|
312925
|
+
type: "string",
|
|
312926
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
312927
|
+
enum: [
|
|
312928
|
+
"bash",
|
|
312929
|
+
"cmd",
|
|
312930
|
+
"powershell"
|
|
312931
|
+
]
|
|
312672
312932
|
},
|
|
312673
312933
|
args: {
|
|
312674
312934
|
type: "array",
|
|
@@ -312794,6 +313054,15 @@ var schemas_default = {
|
|
|
312794
313054
|
},
|
|
312795
313055
|
examples: [
|
|
312796
313056
|
"docker run hello-world",
|
|
313057
|
+
{
|
|
313058
|
+
command: "echo %USERNAME%",
|
|
313059
|
+
shell: "cmd"
|
|
313060
|
+
},
|
|
313061
|
+
{
|
|
313062
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
313063
|
+
shell: "bash",
|
|
313064
|
+
stdio: "bashism"
|
|
313065
|
+
},
|
|
312797
313066
|
{
|
|
312798
313067
|
command: "echo",
|
|
312799
313068
|
args: [
|
|
@@ -357385,7 +357654,7 @@ var schemas_default = {
|
|
|
357385
357654
|
anyOf: [
|
|
357386
357655
|
{
|
|
357387
357656
|
title: "Run shell command (simple)",
|
|
357388
|
-
description: "Command to perform in the
|
|
357657
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
357389
357658
|
type: "string",
|
|
357390
357659
|
transform: [
|
|
357391
357660
|
"trim"
|
|
@@ -357400,7 +357669,16 @@ var schemas_default = {
|
|
|
357400
357669
|
properties: {
|
|
357401
357670
|
command: {
|
|
357402
357671
|
type: "string",
|
|
357403
|
-
description: "Command to perform in the
|
|
357672
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
357673
|
+
},
|
|
357674
|
+
shell: {
|
|
357675
|
+
type: "string",
|
|
357676
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
357677
|
+
enum: [
|
|
357678
|
+
"bash",
|
|
357679
|
+
"cmd",
|
|
357680
|
+
"powershell"
|
|
357681
|
+
]
|
|
357404
357682
|
},
|
|
357405
357683
|
args: {
|
|
357406
357684
|
type: "array",
|
|
@@ -357527,7 +357805,7 @@ var schemas_default = {
|
|
|
357527
357805
|
schemas: {
|
|
357528
357806
|
string: {
|
|
357529
357807
|
title: "Run shell command (simple)",
|
|
357530
|
-
description: "Command to perform in the
|
|
357808
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
357531
357809
|
type: "string",
|
|
357532
357810
|
transform: [
|
|
357533
357811
|
"trim"
|
|
@@ -357542,7 +357820,16 @@ var schemas_default = {
|
|
|
357542
357820
|
properties: {
|
|
357543
357821
|
command: {
|
|
357544
357822
|
type: "string",
|
|
357545
|
-
description: "Command to perform in the
|
|
357823
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
357824
|
+
},
|
|
357825
|
+
shell: {
|
|
357826
|
+
type: "string",
|
|
357827
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
357828
|
+
enum: [
|
|
357829
|
+
"bash",
|
|
357830
|
+
"cmd",
|
|
357831
|
+
"powershell"
|
|
357832
|
+
]
|
|
357546
357833
|
},
|
|
357547
357834
|
args: {
|
|
357548
357835
|
type: "array",
|
|
@@ -357668,6 +357955,15 @@ var schemas_default = {
|
|
|
357668
357955
|
},
|
|
357669
357956
|
examples: [
|
|
357670
357957
|
"docker run hello-world",
|
|
357958
|
+
{
|
|
357959
|
+
command: "echo %USERNAME%",
|
|
357960
|
+
shell: "cmd"
|
|
357961
|
+
},
|
|
357962
|
+
{
|
|
357963
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
357964
|
+
shell: "bash",
|
|
357965
|
+
stdio: "bashism"
|
|
357966
|
+
},
|
|
357671
357967
|
{
|
|
357672
357968
|
command: "echo",
|
|
357673
357969
|
args: [
|
|
@@ -384713,7 +385009,7 @@ var schemas_default = {
|
|
|
384713
385009
|
anyOf: [
|
|
384714
385010
|
{
|
|
384715
385011
|
title: "Run shell command (simple)",
|
|
384716
|
-
description: "Command to perform in the
|
|
385012
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
384717
385013
|
type: "string",
|
|
384718
385014
|
transform: [
|
|
384719
385015
|
"trim"
|
|
@@ -384728,7 +385024,16 @@ var schemas_default = {
|
|
|
384728
385024
|
properties: {
|
|
384729
385025
|
command: {
|
|
384730
385026
|
type: "string",
|
|
384731
|
-
description: "Command to perform in the
|
|
385027
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
385028
|
+
},
|
|
385029
|
+
shell: {
|
|
385030
|
+
type: "string",
|
|
385031
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
385032
|
+
enum: [
|
|
385033
|
+
"bash",
|
|
385034
|
+
"cmd",
|
|
385035
|
+
"powershell"
|
|
385036
|
+
]
|
|
384732
385037
|
},
|
|
384733
385038
|
args: {
|
|
384734
385039
|
type: "array",
|
|
@@ -384855,7 +385160,7 @@ var schemas_default = {
|
|
|
384855
385160
|
schemas: {
|
|
384856
385161
|
string: {
|
|
384857
385162
|
title: "Run shell command (simple)",
|
|
384858
|
-
description: "Command to perform in the
|
|
385163
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
384859
385164
|
type: "string",
|
|
384860
385165
|
transform: [
|
|
384861
385166
|
"trim"
|
|
@@ -384870,7 +385175,16 @@ var schemas_default = {
|
|
|
384870
385175
|
properties: {
|
|
384871
385176
|
command: {
|
|
384872
385177
|
type: "string",
|
|
384873
|
-
description: "Command to perform in the
|
|
385178
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
385179
|
+
},
|
|
385180
|
+
shell: {
|
|
385181
|
+
type: "string",
|
|
385182
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
385183
|
+
enum: [
|
|
385184
|
+
"bash",
|
|
385185
|
+
"cmd",
|
|
385186
|
+
"powershell"
|
|
385187
|
+
]
|
|
384874
385188
|
},
|
|
384875
385189
|
args: {
|
|
384876
385190
|
type: "array",
|
|
@@ -384996,6 +385310,15 @@ var schemas_default = {
|
|
|
384996
385310
|
},
|
|
384997
385311
|
examples: [
|
|
384998
385312
|
"docker run hello-world",
|
|
385313
|
+
{
|
|
385314
|
+
command: "echo %USERNAME%",
|
|
385315
|
+
shell: "cmd"
|
|
385316
|
+
},
|
|
385317
|
+
{
|
|
385318
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
385319
|
+
shell: "bash",
|
|
385320
|
+
stdio: "bashism"
|
|
385321
|
+
},
|
|
384999
385322
|
{
|
|
385000
385323
|
command: "echo",
|
|
385001
385324
|
args: [
|
|
@@ -408433,7 +408756,7 @@ var schemas_default = {
|
|
|
408433
408756
|
anyOf: [
|
|
408434
408757
|
{
|
|
408435
408758
|
title: "Run shell command (simple)",
|
|
408436
|
-
description: "Command to perform in the
|
|
408759
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
408437
408760
|
type: "string",
|
|
408438
408761
|
transform: [
|
|
408439
408762
|
"trim"
|
|
@@ -408448,7 +408771,16 @@ var schemas_default = {
|
|
|
408448
408771
|
properties: {
|
|
408449
408772
|
command: {
|
|
408450
408773
|
type: "string",
|
|
408451
|
-
description: "Command to perform in the
|
|
408774
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
408775
|
+
},
|
|
408776
|
+
shell: {
|
|
408777
|
+
type: "string",
|
|
408778
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
408779
|
+
enum: [
|
|
408780
|
+
"bash",
|
|
408781
|
+
"cmd",
|
|
408782
|
+
"powershell"
|
|
408783
|
+
]
|
|
408452
408784
|
},
|
|
408453
408785
|
args: {
|
|
408454
408786
|
type: "array",
|
|
@@ -408575,7 +408907,7 @@ var schemas_default = {
|
|
|
408575
408907
|
schemas: {
|
|
408576
408908
|
string: {
|
|
408577
408909
|
title: "Run shell command (simple)",
|
|
408578
|
-
description: "Command to perform in the
|
|
408910
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
408579
408911
|
type: "string",
|
|
408580
408912
|
transform: [
|
|
408581
408913
|
"trim"
|
|
@@ -408590,7 +408922,16 @@ var schemas_default = {
|
|
|
408590
408922
|
properties: {
|
|
408591
408923
|
command: {
|
|
408592
408924
|
type: "string",
|
|
408593
|
-
description: "Command to perform in the
|
|
408925
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
408926
|
+
},
|
|
408927
|
+
shell: {
|
|
408928
|
+
type: "string",
|
|
408929
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
408930
|
+
enum: [
|
|
408931
|
+
"bash",
|
|
408932
|
+
"cmd",
|
|
408933
|
+
"powershell"
|
|
408934
|
+
]
|
|
408594
408935
|
},
|
|
408595
408936
|
args: {
|
|
408596
408937
|
type: "array",
|
|
@@ -408716,6 +409057,15 @@ var schemas_default = {
|
|
|
408716
409057
|
},
|
|
408717
409058
|
examples: [
|
|
408718
409059
|
"docker run hello-world",
|
|
409060
|
+
{
|
|
409061
|
+
command: "echo %USERNAME%",
|
|
409062
|
+
shell: "cmd"
|
|
409063
|
+
},
|
|
409064
|
+
{
|
|
409065
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
409066
|
+
shell: "bash",
|
|
409067
|
+
stdio: "bashism"
|
|
409068
|
+
},
|
|
408719
409069
|
{
|
|
408720
409070
|
command: "echo",
|
|
408721
409071
|
args: [
|
|
@@ -453307,7 +453657,7 @@ var schemas_default = {
|
|
|
453307
453657
|
anyOf: [
|
|
453308
453658
|
{
|
|
453309
453659
|
title: "Run shell command (simple)",
|
|
453310
|
-
description: "Command to perform in the
|
|
453660
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
453311
453661
|
type: "string",
|
|
453312
453662
|
transform: [
|
|
453313
453663
|
"trim"
|
|
@@ -453322,7 +453672,16 @@ var schemas_default = {
|
|
|
453322
453672
|
properties: {
|
|
453323
453673
|
command: {
|
|
453324
453674
|
type: "string",
|
|
453325
|
-
description: "Command to perform in the
|
|
453675
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
453676
|
+
},
|
|
453677
|
+
shell: {
|
|
453678
|
+
type: "string",
|
|
453679
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
453680
|
+
enum: [
|
|
453681
|
+
"bash",
|
|
453682
|
+
"cmd",
|
|
453683
|
+
"powershell"
|
|
453684
|
+
]
|
|
453326
453685
|
},
|
|
453327
453686
|
args: {
|
|
453328
453687
|
type: "array",
|
|
@@ -453449,7 +453808,7 @@ var schemas_default = {
|
|
|
453449
453808
|
schemas: {
|
|
453450
453809
|
string: {
|
|
453451
453810
|
title: "Run shell command (simple)",
|
|
453452
|
-
description: "Command to perform in the
|
|
453811
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
453453
453812
|
type: "string",
|
|
453454
453813
|
transform: [
|
|
453455
453814
|
"trim"
|
|
@@ -453464,7 +453823,16 @@ var schemas_default = {
|
|
|
453464
453823
|
properties: {
|
|
453465
453824
|
command: {
|
|
453466
453825
|
type: "string",
|
|
453467
|
-
description: "Command to perform in the
|
|
453826
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
453827
|
+
},
|
|
453828
|
+
shell: {
|
|
453829
|
+
type: "string",
|
|
453830
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
453831
|
+
enum: [
|
|
453832
|
+
"bash",
|
|
453833
|
+
"cmd",
|
|
453834
|
+
"powershell"
|
|
453835
|
+
]
|
|
453468
453836
|
},
|
|
453469
453837
|
args: {
|
|
453470
453838
|
type: "array",
|
|
@@ -453590,6 +453958,15 @@ var schemas_default = {
|
|
|
453590
453958
|
},
|
|
453591
453959
|
examples: [
|
|
453592
453960
|
"docker run hello-world",
|
|
453961
|
+
{
|
|
453962
|
+
command: "echo %USERNAME%",
|
|
453963
|
+
shell: "cmd"
|
|
453964
|
+
},
|
|
453965
|
+
{
|
|
453966
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
453967
|
+
shell: "bash",
|
|
453968
|
+
stdio: "bashism"
|
|
453969
|
+
},
|
|
453593
453970
|
{
|
|
453594
453971
|
command: "echo",
|
|
453595
453972
|
args: [
|
|
@@ -499873,7 +500250,7 @@ var schemas_default = {
|
|
|
499873
500250
|
anyOf: [
|
|
499874
500251
|
{
|
|
499875
500252
|
title: "Run shell command (simple)",
|
|
499876
|
-
description: "Command to perform in the
|
|
500253
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
499877
500254
|
type: "string",
|
|
499878
500255
|
transform: [
|
|
499879
500256
|
"trim"
|
|
@@ -499888,7 +500265,16 @@ var schemas_default = {
|
|
|
499888
500265
|
properties: {
|
|
499889
500266
|
command: {
|
|
499890
500267
|
type: "string",
|
|
499891
|
-
description: "Command to perform in the
|
|
500268
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
500269
|
+
},
|
|
500270
|
+
shell: {
|
|
500271
|
+
type: "string",
|
|
500272
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
500273
|
+
enum: [
|
|
500274
|
+
"bash",
|
|
500275
|
+
"cmd",
|
|
500276
|
+
"powershell"
|
|
500277
|
+
]
|
|
499892
500278
|
},
|
|
499893
500279
|
args: {
|
|
499894
500280
|
type: "array",
|
|
@@ -500015,7 +500401,7 @@ var schemas_default = {
|
|
|
500015
500401
|
schemas: {
|
|
500016
500402
|
string: {
|
|
500017
500403
|
title: "Run shell command (simple)",
|
|
500018
|
-
description: "Command to perform in the
|
|
500404
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
500019
500405
|
type: "string",
|
|
500020
500406
|
transform: [
|
|
500021
500407
|
"trim"
|
|
@@ -500030,7 +500416,16 @@ var schemas_default = {
|
|
|
500030
500416
|
properties: {
|
|
500031
500417
|
command: {
|
|
500032
500418
|
type: "string",
|
|
500033
|
-
description: "Command to perform in the
|
|
500419
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
500420
|
+
},
|
|
500421
|
+
shell: {
|
|
500422
|
+
type: "string",
|
|
500423
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
500424
|
+
enum: [
|
|
500425
|
+
"bash",
|
|
500426
|
+
"cmd",
|
|
500427
|
+
"powershell"
|
|
500428
|
+
]
|
|
500034
500429
|
},
|
|
500035
500430
|
args: {
|
|
500036
500431
|
type: "array",
|
|
@@ -500156,6 +500551,15 @@ var schemas_default = {
|
|
|
500156
500551
|
},
|
|
500157
500552
|
examples: [
|
|
500158
500553
|
"docker run hello-world",
|
|
500554
|
+
{
|
|
500555
|
+
command: "echo %USERNAME%",
|
|
500556
|
+
shell: "cmd"
|
|
500557
|
+
},
|
|
500558
|
+
{
|
|
500559
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
500560
|
+
shell: "bash",
|
|
500561
|
+
stdio: "bashism"
|
|
500562
|
+
},
|
|
500159
500563
|
{
|
|
500160
500564
|
command: "echo",
|
|
500161
500565
|
args: [
|
|
@@ -548092,7 +548496,7 @@ var schemas_default = {
|
|
|
548092
548496
|
anyOf: [
|
|
548093
548497
|
{
|
|
548094
548498
|
title: "Run shell command (simple)",
|
|
548095
|
-
description: "Command to perform in the
|
|
548499
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
548096
548500
|
type: "string",
|
|
548097
548501
|
transform: [
|
|
548098
548502
|
"trim"
|
|
@@ -548107,7 +548511,16 @@ var schemas_default = {
|
|
|
548107
548511
|
properties: {
|
|
548108
548512
|
command: {
|
|
548109
548513
|
type: "string",
|
|
548110
|
-
description: "Command to perform in the
|
|
548514
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
548515
|
+
},
|
|
548516
|
+
shell: {
|
|
548517
|
+
type: "string",
|
|
548518
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
548519
|
+
enum: [
|
|
548520
|
+
"bash",
|
|
548521
|
+
"cmd",
|
|
548522
|
+
"powershell"
|
|
548523
|
+
]
|
|
548111
548524
|
},
|
|
548112
548525
|
args: {
|
|
548113
548526
|
type: "array",
|
|
@@ -548234,7 +548647,7 @@ var schemas_default = {
|
|
|
548234
548647
|
schemas: {
|
|
548235
548648
|
string: {
|
|
548236
548649
|
title: "Run shell command (simple)",
|
|
548237
|
-
description: "Command to perform in the
|
|
548650
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
548238
548651
|
type: "string",
|
|
548239
548652
|
transform: [
|
|
548240
548653
|
"trim"
|
|
@@ -548249,7 +548662,16 @@ var schemas_default = {
|
|
|
548249
548662
|
properties: {
|
|
548250
548663
|
command: {
|
|
548251
548664
|
type: "string",
|
|
548252
|
-
description: "Command to perform in the
|
|
548665
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
548666
|
+
},
|
|
548667
|
+
shell: {
|
|
548668
|
+
type: "string",
|
|
548669
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
548670
|
+
enum: [
|
|
548671
|
+
"bash",
|
|
548672
|
+
"cmd",
|
|
548673
|
+
"powershell"
|
|
548674
|
+
]
|
|
548253
548675
|
},
|
|
548254
548676
|
args: {
|
|
548255
548677
|
type: "array",
|
|
@@ -548375,6 +548797,15 @@ var schemas_default = {
|
|
|
548375
548797
|
},
|
|
548376
548798
|
examples: [
|
|
548377
548799
|
"docker run hello-world",
|
|
548800
|
+
{
|
|
548801
|
+
command: "echo %USERNAME%",
|
|
548802
|
+
shell: "cmd"
|
|
548803
|
+
},
|
|
548804
|
+
{
|
|
548805
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
548806
|
+
shell: "bash",
|
|
548807
|
+
stdio: "bashism"
|
|
548808
|
+
},
|
|
548378
548809
|
{
|
|
548379
548810
|
command: "echo",
|
|
548380
548811
|
args: [
|
|
@@ -592966,7 +593397,7 @@ var schemas_default = {
|
|
|
592966
593397
|
anyOf: [
|
|
592967
593398
|
{
|
|
592968
593399
|
title: "Run shell command (simple)",
|
|
592969
|
-
description: "Command to perform in the
|
|
593400
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
592970
593401
|
type: "string",
|
|
592971
593402
|
transform: [
|
|
592972
593403
|
"trim"
|
|
@@ -592981,7 +593412,16 @@ var schemas_default = {
|
|
|
592981
593412
|
properties: {
|
|
592982
593413
|
command: {
|
|
592983
593414
|
type: "string",
|
|
592984
|
-
description: "Command to perform in the
|
|
593415
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
593416
|
+
},
|
|
593417
|
+
shell: {
|
|
593418
|
+
type: "string",
|
|
593419
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
593420
|
+
enum: [
|
|
593421
|
+
"bash",
|
|
593422
|
+
"cmd",
|
|
593423
|
+
"powershell"
|
|
593424
|
+
]
|
|
592985
593425
|
},
|
|
592986
593426
|
args: {
|
|
592987
593427
|
type: "array",
|
|
@@ -593108,7 +593548,7 @@ var schemas_default = {
|
|
|
593108
593548
|
schemas: {
|
|
593109
593549
|
string: {
|
|
593110
593550
|
title: "Run shell command (simple)",
|
|
593111
|
-
description: "Command to perform in the
|
|
593551
|
+
description: "Command to perform in the default shell (`bash` on every platform, unless the config-level `shell` setting changes it).",
|
|
593112
593552
|
type: "string",
|
|
593113
593553
|
transform: [
|
|
593114
593554
|
"trim"
|
|
@@ -593123,7 +593563,16 @@ var schemas_default = {
|
|
|
593123
593563
|
properties: {
|
|
593124
593564
|
command: {
|
|
593125
593565
|
type: "string",
|
|
593126
|
-
description: "Command to perform in the
|
|
593566
|
+
description: "Command to perform in the selected shell (see `shell`; defaults to `bash` on every platform)."
|
|
593567
|
+
},
|
|
593568
|
+
shell: {
|
|
593569
|
+
type: "string",
|
|
593570
|
+
description: "Shell to run the command in. If unset, uses the config-level `shell` setting, which defaults to `bash`. `cmd` and `powershell` are only supported on Windows. On Windows, `bash` resolves to Git Bash, which Doc Detective installs automatically if it isn't present.",
|
|
593571
|
+
enum: [
|
|
593572
|
+
"bash",
|
|
593573
|
+
"cmd",
|
|
593574
|
+
"powershell"
|
|
593575
|
+
]
|
|
593127
593576
|
},
|
|
593128
593577
|
args: {
|
|
593129
593578
|
type: "array",
|
|
@@ -593249,6 +593698,15 @@ var schemas_default = {
|
|
|
593249
593698
|
},
|
|
593250
593699
|
examples: [
|
|
593251
593700
|
"docker run hello-world",
|
|
593701
|
+
{
|
|
593702
|
+
command: "echo %USERNAME%",
|
|
593703
|
+
shell: "cmd"
|
|
593704
|
+
},
|
|
593705
|
+
{
|
|
593706
|
+
command: '[[ "ok" == o* ]] && echo bashism',
|
|
593707
|
+
shell: "bash",
|
|
593708
|
+
stdio: "bashism"
|
|
593709
|
+
},
|
|
593252
593710
|
{
|
|
593253
593711
|
command: "echo",
|
|
593254
593712
|
args: [
|