Robert Liebowitz
75602a4cfe
Merge pull request #1236 from vipally/ally_fix_default_val
...
bug fix #1235 : default value changes with parsed values on slice flags
2021-04-24 13:02:59 -04:00
Robert Liebowitz
ab52d6f3a9
Merge branch 'master' into ally_fix_default_val
2021-04-24 12:59:13 -04:00
Robert Liebowitz
b1a2d969f8
Merge pull request #1270 from rliebz/no-cov-token
...
Update GitHub action
2021-04-24 12:44:33 -04:00
Robert Liebowitz
80ba835e26
Update GitHub action
...
Bump go version to 1.16 and drop the codecov token, which is now
documented as not required for public repositories.
2021-04-24 12:33:29 -04:00
Robert Liebowitz
b7da09a687
Merge pull request #1255 from cpacifying/master
...
UsageText to be passed from Command to App in startApp
2021-04-24 12:02:48 -04:00
Robert Liebowitz
45eecb1d94
Merge pull request #1264 from dearchap/cleanup_context
...
Cleanup context.go
2021-04-24 12:02:16 -04:00
Robert Liebowitz
45952a7d1b
Merge pull request #1251 from davidsbond/timestamp-destination
...
Add Destination field to TimestampFlag
2021-04-08 19:27:29 -04:00
Naveen Gogineni
07e1fdf17d
Cleanup context.go
2021-04-05 07:57:41 -04:00
Naveen Gogineni
df595c0d85
Fix(issue #631 ). Remove reflect calls for Hidden field
2021-03-25 20:45:30 -04:00
cpacifying
9433f216ff
UsageText to be passed from Command to App in startApp
2021-03-15 17:03:22 +02:00
David Bond
f2bed637fd
Add Destination field to TimestampFlag
...
Adds a `Destination` field for the `TimestampFlag` type that allows you to specify a pointer to
a `Timestamp` rather than having to grab the `Timestamp` from the `cli.Context` using the flag
name.
2021-03-07 03:36:56 +00:00
lynn (they)
13ded1e7c4
Merge pull request #1229 from urfave/lynncyrin-patch-1
...
Don't let stale bot close "help wanted" issues
2021-02-26 15:11:14 -08:00
Ally Dale
06f6815b8d
revert docs/v2/manual.md
2021-02-08 22:41:34 +08:00
Ally Dale
ef9430e77e
fix #1238 : accept multi-value input on sclice flags
2021-02-08 20:10:28 +08:00
AllyDale
c98b85d392
bug fix #1235 : default value changes with parsed values on slice flags
2021-02-05 15:16:50 +08:00
Robert Liebowitz
92d77844fe
Merge pull request #1232 from corburn/patch-2
...
remove repeated comment
2021-01-30 10:00:09 -05:00
Jason Travis
1985ecfdc0
remove repeated comment
2021-01-29 12:10:44 -07:00
Robert Liebowitz
5378891c91
Merge pull request #1210 from jcgregorio/fix-context-value
...
Fix Context.Value.
2021-01-28 23:22:21 -05:00
Robert Liebowitz
795a8adacb
Merge pull request #1208 from Madhur1997/master
...
Display `(accepts multiple inputs)` in the help description for Slice flags.
2021-01-28 23:20:42 -05:00
Robert Liebowitz
498b50b3e1
Merge pull request #1214 from anicoll/flag_lineage_fix
...
fix for parent context not setting child flags
2021-01-28 23:16:40 -05:00
lynn (they)
e1a74460d4
Merge pull request #1227 from nmi/fix_man_section
...
make the man page section selectable
2021-01-28 13:33:44 -08:00
lynn (they)
de20a55d0e
Merge pull request #1228 from zwass/patch-1
...
Link to godoc for v2
2021-01-28 13:33:34 -08:00
Joe Gregorio
d56c85cef5
Add test for the else path.
2021-01-28 14:35:55 -05:00
Joe Gregorio
b8debb6845
Fix Context.Value.
...
Before this change the added test would crash on a nil
pointer dereference because the original code would
only look in the local fileSet and not across all
the fileSets.
2021-01-28 14:35:55 -05:00
Madhur batra
e73d6e133d
Merge branch 'master' of https://github.com/urfave/cli
2021-01-28 10:47:45 +05:30
Nobuhiro MIKI
ed2ee4bc4a
make the man page section selectable
...
Signed-off-by: Nobuhiro MIKI <nob@bobuhiro11.net>
2021-01-28 09:39:26 +09:00
Zach Wasserman
797d5a8d46
Link directly to pkg.go.dev
2021-01-27 16:10:42 -08:00
Andrew Nicoll
06e7bdec34
add test for nil
2021-01-27 18:41:52 +00:00
lynn (they)
c3ebeaee7b
Update stale.yml
2021-01-27 10:37:40 -08:00
Zach Wasserman
a7dc35be5b
Link to godoc for v2
...
This is consistent with the default tag for the repository.
2021-01-27 09:29:24 -08:00
lynn (they)
44ec98527e
Merge pull request #1225 from Coderlane/command_reader
...
fix: Propagate App.Reader to subcommands
2021-01-25 10:08:46 -08:00
lynn (they)
8fb96e61af
Merge pull request #1226 from Coderlane/doc_command
...
fix: Fixup runnable example input arguments
2021-01-25 10:05:16 -08:00
Travis Lane
1f380b0733
fix: Fixup runnable example input arguments
...
This command has no name, so drop the `test-cmd` in `args`.
2021-01-24 20:54:48 -05:00
Travis Lane
17032bc33c
fix: Propagate App.Reader to subcommands
...
This change copies the `Reader` set in `App` to the new `App` created for
subcommands. I've also added a basic test to demonstrate the issue.
2021-01-24 19:49:13 -05:00
Madhur batra
fc1d3eb8da
Merge branch 'master' of https://github.com/urfave/cli
2021-01-06 17:21:48 +05:30
lynn (they)
2e9dc401bb
Merge pull request #1216 from wgumenyuk/patch-1
...
Fix: typo
2021-01-04 13:58:01 -08:00
Wlad Gumenyuk
57d60cd570
Fix: typo
...
Corrected "eror" to "error" on line 331.
2020-12-27 18:30:11 +01:00
Robert Liebowitz
83394fca6f
Merge pull request #1207 from bbkane/patch-1
...
Add link to pkg.go.dev docs in manual.md
2020-12-13 11:11:49 -05:00
Andrew Nicoll
ebe2c0ea70
add for int64
2020-12-09 12:27:56 +00:00
Andrew Nicoll
02f3866db2
add nother test
2020-12-09 12:26:08 +00:00
Andrew Nicoll
55992853bf
add flag tests
2020-12-09 11:59:50 +00:00
Andrew Nicoll
a27ce0e881
unable to see whats happening here with lack of debug but this seems to resolve the failing doc test
2020-12-09 11:48:33 +00:00
Andrew Nicoll
2144cc5ad4
fix for parent context not setting child flags
2020-12-09 11:17:21 +00:00
Ajitem Sahasrabuddhe
d5833134fc
Merge pull request #1212 from jcgregorio/fix-cli-yml
...
Fix workflows/cli.yml.
2020-12-07 09:44:19 +05:30
Joe Gregorio
d5643c884a
Fix workflows/cli.yml.
...
The ::set-env and ::add-path commands no longer work and need to
to be replaced. See:
https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
2020-12-06 10:00:16 -05:00
Madhur batra
ea14b62ecc
Issue #1066 : Display (accepts multiple inputs)
for SliceFlags in the
...
help description.
2020-12-01 14:14:15 +05:00
Benjamin Kane
7c756af2b4
Add link to pkg.go.dev docs
2020-11-27 21:30:44 -08:00
Robert Liebowitz
fe989e1a7a
Merge pull request #1202 from fxrlv/patch-1
...
use Name as default to HelpName
2020-11-25 21:27:18 -05:00
Mostyn Bramley-Moore
cdc1f6e07c
fixup! Report the source of a value when we cannot parse it
...
move bool to the end of the return arguments
remove "from " prefix in the source/fromWhere description
remove TODO notes from functions that don't currently perform error checking
2020-11-07 14:05:39 +01:00
Mostyn Bramley-Moore
500d6b04e6
Report the source of a value when we cannot parse it
...
If you allow a flag to be set from environment variables or files and
a parse error occurs from one of them, it is very useful for the error
message to mention where the value came from.
Without this, it can be difficult to notice an error caused by an
unexpected environment variable being set.
Implements #1167 .
2020-11-03 23:57:00 +01:00