Skip to content

Commit b49d1c6

Browse files
Fix --baseConfig option
Apply --baseConfig before replacing placeholders in manifest. This way when there are placeholders in the file passed as `--baseConfig`, they will be replaced correctly.
1 parent 093d8f3 commit b49d1c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/services/platform-service.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,11 @@ export class PlatformService implements IPlatformService {
299299
// Process configurations files from App_Resources
300300
platformData.platformProjectService.processConfigurationFilesFromAppResources().wait();
301301

302+
this.applyBaseConfigOption(platformData).wait();
303+
302304
// Replace placeholders in configuration files
303305
platformData.platformProjectService.interpolateConfigurationFile().wait();
304306

305-
this.applyBaseConfigOption(platformData).wait();
306307

307308
this.$logger.out("Project successfully prepared");
308309
return true;

0 commit comments

Comments
 (0)