This commit is contained in:
Dan Mills 2008-02-19 21:01:11 -08:00
Родитель e4d6f08edb
Коммит 9b83d920fa
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -118,8 +118,8 @@ WeaveCrypto.prototype = {
throw "encryption not supported on this platform: " + os;
}
let args = [wrap, Utils.getTmp().path, bin];
args = args.concat(arguments);
let args = Array.prototype.slice.call(arguments);
args.unshift(wrap, Utils.getTmp().path, bin);
let rv = Utils.runCmd.apply(null, args);
if (rv != 0)