fix build_args truncating key

This commit is contained in:
2023-12-03 00:33:50 +01:00
parent bedcf121ad
commit f95b0ab738
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -62282,7 +62282,7 @@ function prepareDockerArgs(destinations) {
.map(s => s.trim())
.map(s => {
const equalIndex = s.indexOf('=');
const key = s.substring(0, equalIndex - 1);
const key = s.substring(0, equalIndex);
const value = s.substring(equalIndex + 1);
return {
key,
+1 -1
View File
@@ -180,7 +180,7 @@ export function prepareDockerArgs(destinations) {
.map(s => s.trim())
.map(s => {
const equalIndex = s.indexOf('=');
const key = s.substring(0, equalIndex - 1);
const key = s.substring(0, equalIndex);
const value = s.substring(equalIndex + 1);
return {
key,