abelworkflow 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cli.mjs +1 -8
- package/package.json +1 -1
package/lib/cli.mjs
CHANGED
|
@@ -1945,14 +1945,7 @@ function buildCodexConfigContent(currentContent, {
|
|
|
1945
1945
|
}
|
|
1946
1946
|
|
|
1947
1947
|
function mergeCodexAuthData(auth, envKey, apiKey, legacyEnvKeys = []) {
|
|
1948
|
-
|
|
1949
|
-
for (const key of legacyEnvKeys) {
|
|
1950
|
-
if (key && key !== envKey) {
|
|
1951
|
-
delete nextAuth[key];
|
|
1952
|
-
}
|
|
1953
|
-
}
|
|
1954
|
-
nextAuth[envKey] = apiKey;
|
|
1955
|
-
return nextAuth;
|
|
1948
|
+
return { [envKey]: apiKey };
|
|
1956
1949
|
}
|
|
1957
1950
|
|
|
1958
1951
|
async function installCliTool(tool) {
|