1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00

Support installation from URLs.

This commit is contained in:
Simo Kinnunen 2014-04-03 22:50:51 +09:00
parent 7c3b180f8d
commit 97a042a54d
4 changed files with 132 additions and 65 deletions

View file

@ -427,10 +427,15 @@ program
, 'public ip for global access'
, String
, ip())
.option('--save-dir <dir>'
, 'where to save files'
, String
, os.tmpdir())
.action(function(options) {
require('./roles/storage/temp')({
port: options.port
, publicIp: options.publicIp
, saveDir: options.saveDir
})
})