You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use default directories two times.
One for downloading the existing release assets
from github. We were downloading it inside `tmp`
directory. This commit changes it to use `.tmp`
directory.
Another instance we need a default output directory
is to write the release assets created by csctl.
We were writing to `releases` folder and this commit
updates the same to use `.release` folder.
This commit also updates the `.gitignore` file
accordingly.
Signed-off-by: Aniruddha Basak <[email protected]>
Copy file name to clipboardExpand all lines: pkg/cmd/create.go
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ var createCmd = &cobra.Command{
79
79
80
80
funcinit() {
81
81
createCmd.Flags().StringVarP(&mode, "mode", "m", "stable", "It defines the mode of the cluster stack manager")
82
-
createCmd.Flags().StringVarP(&outputDirectory, "output", "o", "./releases", "It defines the output directory in which the release artifacts will be generated")
82
+
createCmd.Flags().StringVarP(&outputDirectory, "output", "o", "./.release", "It defines the output directory in which the release artifacts will be generated")
83
83
createCmd.Flags().StringVarP(&nodeImageRegistry, "node-image-registry", "r", "", "It defines the node image registry. For example oci://ghcr.io/foo/bar/node-images/staging/")
0 commit comments