You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/new_node_package.yml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,13 @@ body:
102
102
label: Tool's description
103
103
description: |
104
104
The tool description should be short and not include version specific details or other information that is likely to change in a future version. Example: `Deobfuscator to remove common JS obfuscation techniques.`.
105
+
- type: input
106
+
id: arguments
107
+
attributes:
108
+
label: Arguments
109
+
description: |
110
+
Command-line arguments to pass to the tool when running it from the `Tools` directory. For example `--help`.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/new_package.yml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,13 @@ body:
134
134
label: Download SHA256 Hash
135
135
description: |
136
136
SHA256 hash of the `.zip` file downloaded from the download url introduced in the previous field. The hash is used for verification purposes. Example: `62af5cce80dbbf5cdf961ec9515549334a2112056d4168fced75c892c24baa95 `
137
+
- type: input
138
+
id: arguments
139
+
attributes:
140
+
label: Arguments
141
+
description: |
142
+
Command-line arguments to pass to the tool when running it from the `Tools` directory. For example `--help`.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/new_python_tool_pip.yml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,13 @@ body:
102
102
label: Tool's description
103
103
description: |
104
104
The tool description should be short and not include version specific details or other information that is likely to change in a future version. Example: `FakeNet-NG is a dynamic network analysis tool.`
105
+
- type: input
106
+
id: arguments
107
+
attributes:
108
+
label: Arguments
109
+
description: |
110
+
Command-line arguments to pass to the tool when running it from the `Tools` directory. For example `--help`.
parser.add_argument("--console_app", type=str, default="false", choices=["false", "true"], help="The tool is a console application, the shortcut should run it with `cmd /K $toolPath --help` to be able to see the output.")
603
616
parser.add_argument("--inner_folder", type=str, default="false", choices=["false", "true"], help="The ZIP file unzip to a single folder that contains all the tools.")
617
+
parser.add_argument("--arguments", type=str, required=False, default="", help="Command-line arguments for the execution")
0 commit comments