We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30413bd commit ccbaf8bCopy full SHA for ccbaf8b
libraries/rush-lib/src/cli/actions/InitSubspaceAction.ts
@@ -61,7 +61,7 @@ export class InitSubspaceAction extends BaseRushAction {
61
const subspaceConfigPath: string = `${this.rushConfiguration.commonFolder}/config/subspaces/${newSubspaceName}`;
62
const defaultAssetsSubfolder: string = `${assetsFolderPath}/rush-init`;
63
const userDefinedAssetsFolder: string | undefined = subspacesConfiguration.subspaceInitAssetsFolder
64
- ? path.join(this.rushConfiguration.rushJsonFolder, subspacesConfiguration.subspaceInitAssetsFolder)
+ ? `${this.rushConfiguration.rushJsonFolder}/${subspacesConfiguration.subspaceInitAssetsFolder}`
65
: undefined;
66
const templateFilePaths: string[] = [
67
'[dot]npmrc',
0 commit comments