From f32efdbbd3d11e7aadc4f62cd76751d494421675 Mon Sep 17 00:00:00 2001 From: Jorge Izquierdo Date: Mon, 27 Aug 2018 12:01:07 +0200 Subject: [PATCH] Fix wrapper commit not being checked out and update wrapper commit --- src/commands/run.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/commands/run.js b/src/commands/run.js index 9c5b856a5..c6b354eef 100644 --- a/src/commands/run.js +++ b/src/commands/run.js @@ -34,8 +34,7 @@ const url = require('url') const TX_MIN_GAS = 10e6 const WRAPPER_PORT = 3000 -const WRAPPER_COMMIT = 'e60e74107c1d63a34010869159d945f919443851' -const WRAPPER_BRANCH = 'master' +const WRAPPER_COMMIT = '76e173be015f150a516802de61585d31ab786d4f' exports.command = 'run' @@ -212,7 +211,7 @@ exports.handler = function ({ return clone( 'https://github.com/aragon/aragon', WRAPPER_PATH, - { checkout: WRAPPER_BRANCH } + { checkout: WRAPPER_COMMIT } ) }, },