fix remixd launch

pull/1/head
yann300 7 years ago
parent 515e35ef2e
commit 364550b098
  1. 3
      ci/browser_tests.sh
  2. 2
      src/app/files/shared-folder.js

@ -3,7 +3,6 @@
set -e
setupRemixd () {
npm install remixd
mkdir remixdSharedfolder
cd remixdSharedfolder
echo "contract test1 { function get () returns (uint) { return 8; }}" > contract1.sol
@ -15,7 +14,7 @@ setupRemixd () {
cd ..
echo 'sharing folder: '
echo $PWD
./../node_modules/.bin/remixd -S $PWD &
node ../node_modules/remixd/src/main.js -s $PWD &
cd ..
}

@ -54,7 +54,7 @@ module.exports = class SharedFolder {
this.remixd = remixapi(remixd, this)
this.type = 'localhost'
this.error = { 'EEXIST': 'File already exists' }
this._isReady = true
this._isReady = false
this.filesContent = {}
remixd.event.register('notified', (data) => {

Loading…
Cancel
Save