Skip to content

Commit 37272dd

Browse files
Allow pruning of target directory's contents (#113)
1 parent 0d0a281 commit 37272dd

File tree

5 files changed

+36
-0
lines changed

5 files changed

+36
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Flags:
103103
--include-triple-dash if enabled, the typical "---" YAML separator is included at the beginning of resources sliced
104104
-f, --input-file string the input file used to read the initial macro YAML file; if empty or "-", stdin is used
105105
-o, --output-dir string the output directory used to output the splitted files
106+
--prune if enabled, the output directory will be pruned before writing the files
106107
-q, --quiet if true, no output is written to stdout/err
107108
-s, --skip-non-k8s if enabled, any YAMLs that don't contain at least an "apiVersion", "kind" and "metadata.name" will be excluded from the split
108109
--sort-by-kind if enabled, resources are sorted by Kind, a la Helm, before saving them to disk

app.go

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ func root() *cobra.Command {
113113
rootCommand.Flags().BoolVar(&opts.AllowEmptyKinds, "allow-empty-kinds", false, "if enabled, resources with empty kinds don't produce an error when filtering")
114114
rootCommand.Flags().BoolVar(&opts.AllowEmptyNames, "allow-empty-names", false, "if enabled, resources with empty names don't produce an error when filtering")
115115
rootCommand.Flags().BoolVar(&opts.IncludeTripleDash, "include-triple-dash", false, "if enabled, the typical \"---\" YAML separator is included at the beginning of resources sliced")
116+
rootCommand.Flags().BoolVar(&opts.PruneOutputDir, "prune", false, "if enabled, the output directory will be pruned before writing the files")
116117

117118
_ = rootCommand.Flags().MarkHidden("debug")
118119
return rootCommand

slice/execute.go

+12
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,18 @@ func (s *Split) store() error {
155155
s.opts.OutputDirectory = "."
156156
}
157157

158+
// If the user wants to prune the output directory, do it
159+
if s.opts.PruneOutputDir && !s.opts.OutputToStdout && !s.opts.DryRun {
160+
// Check if the directory exists and if it does, prune it
161+
if _, err := os.Stat(s.opts.OutputDirectory); !os.IsNotExist(err) {
162+
s.log.Printf("Pruning output directory %q", s.opts.OutputDirectory)
163+
if err := deleteFolderContents(s.opts.OutputDirectory); err != nil {
164+
return fmt.Errorf("unable to prune output directory %q: %w", s.opts.OutputDirectory, err)
165+
}
166+
s.log.Printf("Output directory %q pruned", s.opts.OutputDirectory)
167+
}
168+
}
169+
158170
// Now save those files to disk (or if dry-run is on, print what it would
159171
// save). Files will be overwritten.
160172
s.fileCount = 0

slice/split.go

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ type Options struct {
6565

6666
InputFile string // the name of the input file to be read
6767
OutputDirectory string // the path to the directory where the files will be stored
68+
PruneOutputDir bool // if true, the output directory will be pruned before writing the files
6869
OutputToStdout bool // if true, the output will be written to stdout instead of a file
6970
GoTemplate string // the go template code to render the file names
7071
DryRun bool // if true, no files are created

slice/utils.go

+21
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,24 @@ func openFile(fp string) (*os.File, error) {
3838

3939
return f, nil
4040
}
41+
42+
func deleteFolderContents(location string) error {
43+
f, err := os.Open(location)
44+
if err != nil {
45+
return fmt.Errorf("unable to open folder %q: %s", location, err.Error())
46+
}
47+
defer f.Close()
48+
49+
names, err := f.Readdirnames(-1)
50+
if err != nil {
51+
return fmt.Errorf("unable to read folder %q: %s", location, err.Error())
52+
}
53+
54+
for _, name := range names {
55+
if err := os.RemoveAll(location + "/" + name); err != nil {
56+
return fmt.Errorf("unable to remove %q: %s", name, err.Error())
57+
}
58+
}
59+
60+
return nil
61+
}

0 commit comments

Comments
 (0)