Skip to content

Commit c6433d4

Browse files
author
Jennings Zhang
committed
Expose --copy and --output-suffix via chris_plugin_info.json
1 parent 023672a commit c6433d4

3 files changed

Lines changed: 26 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "abs"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

chris_plugin_info.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pl-abs",
3-
"version": "1.0.0",
4-
"dock_image": "ghcr.io/fnndsc/pl-abs:1.0.0",
3+
"version": "1.0.1",
4+
"dock_image": "ghcr.io/fnndsc/pl-abs:1.0.1",
55
"public_repo": "https://github.com/FNNDSC/pl-abs",
66

77
"icon": "",
@@ -24,6 +24,28 @@
2424
"help": "File extensions of files to include.",
2525
"default": ".txt",
2626
"ui_exposed": true
27+
},
28+
{
29+
"name": "output_suffix",
30+
"type": "str",
31+
"optional": true,
32+
"flag": "--output-suffix",
33+
"short_flag": "-o",
34+
"action": "store",
35+
"help": "File extensions of files to include.",
36+
"default": "",
37+
"ui_exposed": true
38+
},
39+
{
40+
"name": "copy",
41+
"type": "bool",
42+
"optional": true,
43+
"flag": "--copy",
44+
"short_flag": "-c",
45+
"action": "store_true",
46+
"help": "Copy ignored files to output dir",
47+
"default": false,
48+
"ui_exposed": true
2749
}
2850
],
2951
"selfpath": "/usr/local/bin",

0 commit comments

Comments
 (0)