From 084148e353637d13a128efaea28788259e3d0061 Mon Sep 17 00:00:00 2001 From: Ray Schamp <rschamp@users.noreply.github.com> Date: Wed, 9 Nov 2016 13:41:57 -0500 Subject: [PATCH] Fix path to .nojekyll The path on scratch-gui which this was copied from is different than the one for scratch-vm. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a21d3534e..6d5a1e671 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "scripts": { "build": "./node_modules/.bin/webpack --progress --colors --bail", "coverage": "./node_modules/.bin/tap ./test/{unit,integration}/*.js --coverage --coverage-report=lcov", - "deploy": "touch build/.nojekyll && ./node_modules/.bin/gh-pages -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"", + "deploy": "touch playground/.nojekyll && ./node_modules/.bin/gh-pages -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"", "lint": "./node_modules/.bin/eslint .", "prepublish": "npm run build", "prepublish-watch": "npm run watch",