Skip to content

Commit 775f2cf

Browse files
fall back to proj dir
1 parent 023523f commit 775f2cf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37090,7 +37090,7 @@ const main = async () => {
3709037090
finally {
3709137091
core.endGroup();
3709237092
}
37093-
let outputDirectory = project.outputDirectory || path.join(project.projectDirectory, project.projectName);
37093+
let outputDirectory = project.outputDirectory || project.projectDirectory;
3709437094
let appPackagesGlobber = await glob.create(path.join(outputDirectory, `**`, `AppPackages`), { matchDirectories: true });
3709537095
const appPackages = await appPackagesGlobber.glob();
3709637096
if (appPackages.length === 0) {

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const main = async () => {
6868
} finally {
6969
core.endGroup();
7070
}
71-
let outputDirectory = project.outputDirectory || path.join(project.projectDirectory, project.projectName);
71+
let outputDirectory = project.outputDirectory || project.projectDirectory;
7272
let appPackagesGlobber = await glob.create(path.join(outputDirectory, `**`, `AppPackages`), { matchDirectories: true });
7373
const appPackages = await appPackagesGlobber.glob();
7474
if (appPackages.length === 0) {

0 commit comments

Comments
 (0)