You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* returns the folder that holds the correct templates, based on the user's
26
32
* package choice
@@ -109,7 +115,7 @@ async function createPythApp() {
109
115
}: InProgressCreatePythAppResponses,
110
116
)=>{
111
117
letmsg=`Please confirm your choices:${os.EOL}`;
112
-
msg+=`Creating a ${chalk.magenta(packageType)} package, named ${chalk.magenta(packageName)}, in ${chalk.magenta(packageType===PackageType.WEBAPP ? "apps" : folder)}/${packageName?.split("/")[1]??""}.${os.EOL}`;
118
+
msg+=`Creating a ${chalk.magenta(packageType)} package, named ${chalk.magenta(packageName)}, in ${chalk.magenta(packageType===PackageType.WEBAPP ? "apps" : folder)}/${getPackageNameWithoutOrg(packageName)}.${os.EOL}`;
113
119
msg+="Look good?";
114
120
115
121
returnmsg;
@@ -124,7 +130,7 @@ async function createPythApp() {
0 commit comments