This commit is contained in:
Michal Moskal 2015-12-15 12:47:37 -08:00
Родитель 6e8d7a0e63 d69979a926
Коммит 2337d01d96
2 изменённых файлов: 6 добавлений и 3 удалений

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

@ -69,7 +69,10 @@ function execCallback(task) {
return function (error, stdout, stderr) {
if (stdout) console.log(stdout.toString());
if (stderr) console.error(stderr.toString());
if (error) task.fail(error);
if (error) {
console.error(error);
task.fail(error);
}
else task.complete();
}
}
@ -488,7 +491,7 @@ task('update-lang', [ 'build/client.js', 'default' ], { async: true }, function(
task('azure', [ 'build/shell.js' ], { async: true }, function() {
jake.mkdirP("build/azure")
child_process.execFile(
"C:/Program Files/Microsoft SDKs/Azure/.NET SDK/v2.5/bin/cspack.exe",
"C:/Program Files/Microsoft SDKs/Azure/.NET SDK/v2.8/bin/cspack.exe",
[ "tdshell.csdef",
"/out:../../build/azure/tdshell.cspkg",
"/roleFiles:ShellRole;files.txt" ], { cwd: 'shell/azure' }, execCallback(this))

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

@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
schemaVersion="2014-06.2.4"
schemaVersion="2015-04.2.6"
name="tdshell"
>
<WorkerRole name="ShellRole">