Skip to content

Commit

Permalink
🐛 FIX: Fix issue #14. Support Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarabhirup committed Nov 20, 2019
1 parent 8d3147e commit f69525c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.sideview
.DS_store

# Extras
dist*
Expand Down
23 changes: 10 additions & 13 deletions node_modules/bulkmailcli_settings/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bulk-mail-cli",
"version": "1.0.1",
"version": "1.0.2",
"description": "Do quick, hassle-free email marketing with this small but very powerful tool! 🔥",
"main": "src/dist/src/bulkmailer.js",
"author": "Kumar Abhirup",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/main.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BulkMailCli {
* @description Initializes at every BulkMailCli command
*/
async create(){
if(platform() == 'darwin' || platform() == 'linux'){
if(platform() == 'darwin' || platform() == 'linux' || platform() == 'win32'){
await this.setSettings()
bulkmail()
} else {
Expand Down

0 comments on commit f69525c

Please sign in to comment.