Skip to content

Commit

Permalink
Fixed bug in the logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dub-flow committed Feb 21, 2023
1 parent 0bff19a commit 13d4e06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion todo.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- Add it to the NPM registry
- Add functionality to explicitly include certain files that my packager excludes (sample use case: `node_modules` may contain 2nd party code)
- Dry run functionality
- Dry run functionality - Return JSON

- Have a test to check e.g. if a `.js` file exists in the folder to zip up and otherwise say something like "You're sure this is the correct folder?"

Expand Down
2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ func IsPublicFolder(path string) bool {

if strings.HasSuffix(path, publicFolderPath) || strings.Contains(path, fileInPublicFolderPath) {
if !didPrintPublicMsg {
log.Info("\tIgnoring `build` folder")
log.Info("\tIgnoring `public` folder")
didPrintPublicMsg = true
}

Expand Down

0 comments on commit 13d4e06

Please sign in to comment.