Skip to content

Commit

Permalink
Fix error when running run-dev after clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
chnn committed Aug 1, 2018
1 parent af7186f commit b852695
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -105,6 +105,7 @@ run: ${BINARY}
./chronograf

run-dev: chronogiraffe
mkdir -p ui/build
./chronograf -d --log-level=debug

clean:
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Expand Up @@ -11,7 +11,7 @@
"scripts": {
"start": "node parcel.js",
"build": "parcel build -d build --no-source-maps --public-url '' src/index.html",
"clean": "rm -rf ./build && rm -rf ./.cache",
"clean": "rm -rf ./build/* && rm -rf ./.cache",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
Expand Down

0 comments on commit b852695

Please sign in to comment.