genbox 1.0.88 → 1.0.89
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/dist/commands/create.js +3 -2
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -826,11 +826,12 @@ function buildPayload(resolved, config, publicKey, privateKey, configLoader) {
|
|
|
826
826
|
}
|
|
827
827
|
}
|
|
828
828
|
}
|
|
829
|
-
// Add setup script if generated
|
|
829
|
+
// Add env setup script if generated (processes .env.genbox for multi-app projects)
|
|
830
|
+
// Named setup-env.sh to avoid conflict with API's setup-genbox.sh
|
|
830
831
|
const setupScript = generateSetupScript(resolved, config, envFilesToMove);
|
|
831
832
|
if (setupScript) {
|
|
832
833
|
files.push({
|
|
833
|
-
path: '/home/dev/setup-
|
|
834
|
+
path: '/home/dev/setup-env.sh',
|
|
834
835
|
content: setupScript,
|
|
835
836
|
permissions: '0755',
|
|
836
837
|
});
|