Skip to content

Commit 13d4e06

Browse files
committed
Fixed bug in the logging
1 parent 0bff19a commit 13d4e06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

todo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
- Add it to the NPM registry
22
- Add functionality to explicitly include certain files that my packager excludes (sample use case: `node_modules` may contain 2nd party code)
3-
- Dry run functionality
3+
- Dry run functionality - Return JSON
44

55
- 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?"
66

utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ func IsPublicFolder(path string) bool {
349349

350350
if strings.HasSuffix(path, publicFolderPath) || strings.Contains(path, fileInPublicFolderPath) {
351351
if !didPrintPublicMsg {
352-
log.Info("\tIgnoring `build` folder")
352+
log.Info("\tIgnoring `public` folder")
353353
didPrintPublicMsg = true
354354
}
355355

0 commit comments

Comments
 (0)