Skip to content
This repository has been archived by the owner on Nov 17, 2021. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
qskj committed Oct 12, 2019
1 parent b05a6b6 commit ec39e6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions lib/util/check_aria2c_installed.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
'use strict';
const path = require('path')
const fs = require('fs-extra');
var spawn = require('child_process').spawn
var iconv = require('iconv-lite')
const spawn = require('child_process').spawn
const iconv = require('iconv-lite')
const os = require('os')
const {unlink} = require(path.join(__dirname,'../utils'))


Expand Down
6 changes: 3 additions & 3 deletions lib/util/check_ffmpeg_installed.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';
const path = require('path')
const fs = require('fs-extra');
var spawn = require('child_process').spawn
var iconv = require('iconv-lite')
var os = require('os')
const spawn = require('child_process').spawn
const iconv = require('iconv-lite')
const os = require('os')
const {unlink} = require(path.join(__dirname,'../utils'))

var eunzip = async function(zippath, outpath){
Expand Down

0 comments on commit ec39e6d

Please sign in to comment.