diff --git a/internal/files/copy.go b/internal/files/copy.go index c08349522..207790791 100644 --- a/internal/files/copy.go +++ b/internal/files/copy.go @@ -18,7 +18,7 @@ func CopyAll(sourcePath, destinationPath string) error { // CopyWithoutDev method copies files from the source to the destination, but skips _dev directories and empty folders. func CopyWithoutDev(sourcePath, destinationPath string) error { - return CopyWithSkipped(sourcePath, destinationPath, []string{"_dev"}) + return CopyWithSkipped(sourcePath, destinationPath, []string{"_dev", "build", ".git"}) } // CopyWithSkipped method copies files from the source to the destination, but skips selected directories and empty folders.