summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-05-06 18:23:31 -0600
committerLuke Shumaker <lukeshu@lukeshu.com>2023-05-06 21:21:47 -0600
commiteffd6957051b0bdb685cbe5eb1e876d50a54ad39 (patch)
treed186fda3cc146833d8310ff111dbe1b8ca45af3f
parent540ec9fb8bb3f5da50bba34eee377ce5e7bb6c61 (diff)
cmd: inspect dump-trees: Bump the btrfs-progs version
-rw-r--r--cmd/btrfs-rec/inspect_dumptrees.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/btrfs-rec/inspect_dumptrees.go b/cmd/btrfs-rec/inspect_dumptrees.go
index 431a302..906f3ab 100644
--- a/cmd/btrfs-rec/inspect_dumptrees.go
+++ b/cmd/btrfs-rec/inspect_dumptrees.go
@@ -21,7 +21,7 @@ func init() {
Short: "A clone of `btrfs inspect-internal dump-tree`",
Args: cliutil.WrapPositionalArgs(cobra.NoArgs),
RunE: runWithReadableFS(func(fs btrfs.ReadableFS, cmd *cobra.Command, _ []string) error {
- const version = "6.1.3"
+ const version = "6.3"
out := os.Stdout
textui.Fprintf(out, "btrfs-progs v%v\n", version)
dumptrees.DumpTrees(cmd.Context(), out, fs)