Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mirioeggmann committed Mar 4, 2021
1 parent 6cdb518 commit 3423311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func Release(ctx context.Context, cfg Config) error {

// Copy statedb from bld dir, if available
statedbSrc := filepath.Join(sourceDir, "statedb")
statedbDest := filepath.Join(outputDir, "statedb");
statedbDest := filepath.Join(outputDir, "statedb")
if _, err := os.Stat(statedbSrc); !os.IsNotExist(err) {
err = cpy.Copy(statedbSrc, statedbDest)
if err != nil {
Expand Down

0 comments on commit 3423311

Please sign in to comment.