Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
buffer /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
download-node-tests.js
3.17
KB
-rwxr-xr-x
2016-08-08 08:26
test.js
1.1
KB
-rw-r--r--
2016-08-03 20:44
update-authors.sh
521
B
-rwxr-xr-x
2016-08-08 20:59
zuul-es5.yml
253
B
-rw-r--r--
2016-08-08 08:43
zuul-es6.yml
106
B
-rw-r--r--
2016-08-08 08:42
Save
Rename
#!/usr/bin/env node var cp = require('child_process') var fs = require('fs') var path = require('path') var shouldRunBrowserTests = !process.env.TRAVIS_PULL_REQUEST || process.env.TRAVIS_PULL_REQUEST === 'false' var node = cp.spawn('npm', ['run', 'test-node'], { stdio: 'inherit' }) node.on('close', function (code) { if (code === 0 && shouldRunBrowserTests) { runBrowserTests() } else { process.exit(code) } }) function runBrowserTests () { var zuulYmlPath = path.join(__dirname, '..', '.zuul.yml') writeES5ZuulYml() cp.spawn('npm', ['run', 'test-browser-es5'], { stdio: 'inherit' }) .on('close', function (code) { if (code !== 0) process.exit(code) writeES6ZuulYml() cp.spawn('npm', ['run', 'test-browser-es6'], { stdio: 'inherit' }) .on('close', function (code) { process.exit(code) }) }) function writeES5ZuulYml () { fs.writeFileSync(zuulYmlPath, fs.readFileSync(path.join(__dirname, 'zuul-es5.yml'))) } function writeES6ZuulYml () { fs.writeFileSync(zuulYmlPath, fs.readFileSync(path.join(__dirname, 'zuul-es6.yml'))) } }