Skip to content

Commit 1c9acc3

Browse files
committed
docs
1 parent 6d48fb0 commit 1c9acc3

7 files changed

Lines changed: 38 additions & 11 deletions

File tree

cmd/bundle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func NewCmdBundle() *cobra.Command {
9393
RunE: runBundlePublish,
9494
}
9595
bundlePublishCmd.Flags().StringP("bundle-directory", "b", ".", "Path to a directory containing a massdriver.yaml file.")
96-
bundlePublishCmd.Flags().String("access", "", "Override the access, useful in CI for deploying to sandboxes.")
96+
bundlePublishCmd.Flags().String("access", "", "(Deprecated) Only here for backwards compatibility. Will be removed in a future release.")
9797

9898
bundlePullCmd := &cobra.Command{
9999
Use: "pull <bundle-name>",

docs/generated/mass_bundle.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,5 @@ Generate and publish bundles
2727
* [mass bundle lint](/cli/commands/mass_bundle_lint) - Check massdriver.yaml file for common errors
2828
* [mass bundle new](/cli/commands/mass_bundle_new) - Create a new bundle from a template
2929
* [mass bundle publish](/cli/commands/mass_bundle_publish) - Publish bundle to Massdriver's package manager
30+
* [mass bundle pull](/cli/commands/mass_bundle_pull) - Pull bundle from Massdriver to local directory
3031
* [mass bundle template](/cli/commands/mass_bundle_template) - Application template development tools

docs/generated/mass_bundle_build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ mass bundle build [flags]
1515
### Options
1616

1717
```
18-
-b, --build-directory string Path to a directory containing a massdriver.yaml file. (default ".")
19-
-h, --help help for build
18+
-b, --bundle-directory string Path to a directory containing a massdriver.yaml file. (default ".")
19+
-h, --help help for build
2020
```
2121

2222
### SEE ALSO

docs/generated/mass_bundle_import.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ mass bundle import [flags]
3636
### Options
3737

3838
```
39-
-a, --all Import all variables without prompting
40-
-b, --build-directory string Path to a directory containing a massdriver.yaml file. (default ".")
41-
-h, --help help for import
39+
-a, --all Import all variables without prompting
40+
-b, --bundle-directory string Path to a directory containing a massdriver.yaml file. (default ".")
41+
-h, --help help for import
4242
```
4343

4444
### SEE ALSO

docs/generated/mass_bundle_lint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ mass bundle lint [flags]
1515
### Options
1616

1717
```
18-
-b, --build-directory string Path to a directory containing a massdriver.yaml file. (default ".")
19-
-h, --help help for lint
18+
-b, --bundle-directory string Path to a directory containing a massdriver.yaml file. (default ".")
19+
-h, --help help for lint
2020
```
2121

2222
### SEE ALSO

docs/generated/mass_bundle_publish.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ mass bundle publish [flags]
1515
### Options
1616

1717
```
18-
-b, --build-directory string Path to a directory containing a massdriver.yaml file. (default ".")
19-
-h, --help help for publish
20-
-t, --tag string Bundle tag (default "latest")
18+
--access string (Deprecated) Only here for backwards compatibility. Will be removed in a future release.
19+
-b, --bundle-directory string Path to a directory containing a massdriver.yaml file. (default ".")
20+
-h, --help help for publish
2121
```
2222

2323
### SEE ALSO

docs/generated/mass_bundle_pull.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
id: mass_bundle_pull.md
3+
slug: /cli/commands/mass_bundle_pull
4+
title: Mass Bundle Pull
5+
sidebar_label: Mass Bundle Pull
6+
---
7+
## mass bundle pull
8+
9+
Pull bundle from Massdriver to local directory
10+
11+
```
12+
mass bundle pull <bundle-name> [flags]
13+
```
14+
15+
### Options
16+
17+
```
18+
-d, --directory string Directory to output the bundle. Defaults to bundle name.
19+
-f, --force Force pull even if the directory already exists. This will overwrite existing files.
20+
-h, --help help for pull
21+
-t, --tag string Bundle tag (defaults to 'latest') (default "latest")
22+
```
23+
24+
### SEE ALSO
25+
26+
* [mass bundle](/cli/commands/mass_bundle) - Generate and publish bundles

0 commit comments

Comments
 (0)