remove json report

pull/5370/head
yann300 3 years ago
parent 2445608087
commit f4364e76bf
  1. 5
      libs/remixd/src/services/slitherClient.ts

@ -4,7 +4,7 @@ import * as WS from 'ws' // eslint-disable-line
import { PluginClient } from '@remixproject/plugin' import { PluginClient } from '@remixproject/plugin'
import { existsSync, readFileSync, readdirSync } from 'fs' import { existsSync, readFileSync, readdirSync } from 'fs'
import { OutputStandard } from '../types' // eslint-disable-line import { OutputStandard } from '../types' // eslint-disable-line
const { spawn, execSync } = require('child_process') const { spawn, execSync, unlink } = require('child_process')
export class SlitherClient extends PluginClient { export class SlitherClient extends PluginClient {
methods: Array<string> methods: Array<string>
@ -150,6 +150,9 @@ export class SlitherClient extends PluginClient {
if (existsSync(outputFileAbsPath)) { if (existsSync(outputFileAbsPath)) {
let report = readFileSync(outputFileAbsPath, 'utf8') let report = readFileSync(outputFileAbsPath, 'utf8')
report = JSON.parse(report) report = JSON.parse(report)
try {
unlink(outputFileAbsPath)
} catch (e) {}
if (report['success']) { if (report['success']) {
response['status'] = true response['status'] = true
if (!report['results'] || !report['results'].detectors || !report['results'].detectors.length) { if (!report['results'] || !report['results'].detectors || !report['results'].detectors.length) {

Loading…
Cancel
Save