Skip to content

Commit 369e357

Browse files
committed
We expect the mkdir to fail when the dir exists, so use ; not &&
1 parent 93f8fcb commit 369e357

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"build:compile": "babel --source-maps -d lib src",
1818
"build:bundle": "NODE_ENV=production webpack -p lib/vector/index.js vector/bundle.js",
1919
"build": "npm run build:css && npm run build:compile && npm run build:bundle",
20-
"package": "npm run build && mkdir packages && bestzip packages/vector-`git describe --dirty || echo unknown`.zip vector",
20+
"package": "npm run build && mkdir packages; bestzip packages/vector-`git describe --dirty || echo unknown`.zip vector",
2121
"start:js": "webpack -w src/vector/index.js vector/bundle.js",
2222
"start:js:prod": "NODE_ENV=production webpack -w src/vector/index.js vector/bundle.js",
2323
"start:skins:css": "catw \"src/skins/vector/css/**/*.css\" -o vector/components.css",

0 commit comments

Comments
 (0)