Skip to content

Commit f69525c

Browse files
committed
🐛 FIX: Fix issue #14. Support Windows.
1 parent 8d3147e commit f69525c

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
.sideview
8+
.DS_store
89

910
# Extras
1011
dist*

node_modules/bulkmailcli_settings/package.json

Lines changed: 10 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bulk-mail-cli",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Do quick, hassle-free email marketing with this small but very powerful tool! 🔥",
55
"main": "src/dist/src/bulkmailer.js",
66
"author": "Kumar Abhirup",

src/lib/main.class.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class BulkMailCli {
4141
* @description Initializes at every BulkMailCli command
4242
*/
4343
async create(){
44-
if(platform() == 'darwin' || platform() == 'linux'){
44+
if(platform() == 'darwin' || platform() == 'linux' || platform() == 'win32'){
4545
await this.setSettings()
4646
bulkmail()
4747
} else {

0 commit comments

Comments
 (0)