pull/310/head
Frostebite 2021-12-30 19:15:58 +00:00
parent 164daeb7a1
commit 95e005365f
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2539,7 +2539,7 @@ class TaskParameterSerializer {
array = array.filter((x) => x.value !== undefined && x.name !== '0' && x.value !== '');
array = array.map((x) => {
x.name = __1.Input.ToEnvVarFormat(x.name);
x.value = `${x.value}`;
x.value = x.value.toString();
return x;
});
return array;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@ export class TaskParameterSerializer {
array = array.filter((x) => x.value !== undefined && x.name !== '0' && x.value !== '');
array = array.map((x) => {
x.name = Input.ToEnvVarFormat(x.name);
x.value = `${x.value}`;
x.value = x.value.toString();
return x;
});
return array;