Skip to content

Commit

Permalink
Expose --copy and --output-suffix via chris_plugin_info.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed May 2, 2023
1 parent 023672a commit c6433d4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abs"
version = "1.0.0"
version = "1.0.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
26 changes: 24 additions & 2 deletions chris_plugin_info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pl-abs",
"version": "1.0.0",
"dock_image": "ghcr.io/fnndsc/pl-abs:1.0.0",
"version": "1.0.1",
"dock_image": "ghcr.io/fnndsc/pl-abs:1.0.1",
"public_repo": "https://github.com/FNNDSC/pl-abs",

"icon": "",
Expand All @@ -24,6 +24,28 @@
"help": "File extensions of files to include.",
"default": ".txt",
"ui_exposed": true
},
{
"name": "output_suffix",
"type": "str",
"optional": true,
"flag": "--output-suffix",
"short_flag": "-o",
"action": "store",
"help": "File extensions of files to include.",
"default": "",
"ui_exposed": true
},
{
"name": "copy",
"type": "bool",
"optional": true,
"flag": "--copy",
"short_flag": "-c",
"action": "store_true",
"help": "Copy ignored files to output dir",
"default": false,
"ui_exposed": true
}
],
"selfpath": "/usr/local/bin",
Expand Down

0 comments on commit c6433d4

Please sign in to comment.