From 508f925bbf97b3066645326741c089ebe8460541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Galliat?= Date: Thu, 8 Feb 2018 19:25:44 -0500 Subject: [PATCH] Fix build script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8b532bd..40ef0d4 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "url": "git://github.com/feross/thanks.git" }, "scripts": { - "build": "mkdir dist && babel src/cmd.js > dist/cmd.js && chmod +x ./dist/cmd.js", + "build": "mkdir -p dist && babel src/cmd.js > dist/cmd.js && chmod +x ./dist/cmd.js", "test": "standard && npm run build && ./dist/cmd.js --no-open", "prepublish": "npm run build" }