Skip to content
Snippets Groups Projects
Commit b0a62424 authored by Cédric Moreau's avatar Cédric Moreau
Browse files

Fix #297 --harmony flag is no more needed

parent bcd8ecb6
No related branches found
No related tags found
No related merge requests found
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
"test": "test" "test": "test"
}, },
"scripts": { "scripts": {
"test": "mocha --harmony --growl --timeout 20000 test test/fast test/fast/block test/integration test/", "test": "mocha --growl --timeout 20000 test test/fast test/fast/block test/integration test/",
"start": "node --harmony bin/ucoind start", "start": "node bin/ucoind start",
"test-travis": "node --harmony ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --timeout 20000 test test/fast test/fast/block test/integration test/" "test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --timeout 20000 test test/fast test/fast/block test/integration test/"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
......
...@@ -36,7 +36,7 @@ ucoind() { ...@@ -36,7 +36,7 @@ ucoind() {
#--------------------------------- #---------------------------------
start|stop|restart) start|stop|restart)
$NODE --harmony "$UCOIN_DIR/bin/daemon" $* $NODE "$UCOIN_DIR/bin/daemon" $*
;; ;;
#--------------------------------- #---------------------------------
...@@ -44,7 +44,7 @@ ucoind() { ...@@ -44,7 +44,7 @@ ucoind() {
#--------------------------------- #---------------------------------
*) *)
$NODE --harmony "$UCOIN_DIR/bin/ucoind" $* $NODE "$UCOIN_DIR/bin/ucoind" $*
;; ;;
esac esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment