refactor: remove outdated comment in railpack command builder

- Removed a comment regarding the use of shell-quote for escaping export statements, as the functionality is now handled by the `prepareEnvironmentVariablesForShell` function introduced in a previous commit.
This commit is contained in:
Mauricio Siu
2025-11-19 21:18:13 -06:00
parent af2b053caa
commit fee802a57b

View File

@@ -76,7 +76,6 @@ export const getRailpackCommand = (application: ApplicationNested) => {
const [key, value] = parseEnvironmentKeyValuePair(pair);
if (key && value) {
buildArgs.push("--secret", `id=${key},env=${key}`);
// Use shell-quote to properly escape the export statement
exportEnvs.push(`export ${key}=${quote([value])}`);
}
}