diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c9f7fb959..fda0ad20ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: - run: yarn run downloadsolc_assets - run: NX_BIN_URL=http://127.0.0.1:8080/assets/js NX_WASM_URL=http://127.0.0.1:8080/assets/js yarn build:production - run: npx nx build remix-ide-e2e-src-local-plugin & yarn run build:libs & yarn run downloadsolc_assets_e2e - - run: mkdir persist && zip -r persist/dist.zip dist + - run: mkdir persist && zip -0 -r persist/dist.zip dist - persist_to_workspace: root: . paths: diff --git a/apps/remix-ide/src/app/files/fileProvider.js b/apps/remix-ide/src/app/files/fileProvider.js index 3bee5cf957..fe8c803bf3 100644 --- a/apps/remix-ide/src/app/files/fileProvider.js +++ b/apps/remix-ide/src/app/files/fileProvider.js @@ -151,7 +151,6 @@ class FileProvider { // this will not add a folder as readonly but keep the original url to be able to restore it later async addExternal (path, content, url) { - console.log('addExternal', path) if (url) this.addNormalizedName(path, url) return await this.set(path, content) }