Skip to content

Commit

Permalink
refactor(smfSupport): modFrameworkDataPath -> modFrameworkDataPaths
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyFuller committed Jan 3, 2025
1 parent 8a06cae commit a9230a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/smfSupport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class SMFSupport {
public readonly lastDeploy: SMFLastDeploy | null

constructor(private readonly controller: Controller) {
const dataPaths = SMFSupport.modFrameworkDataPath
const dataPaths = SMFSupport.modFrameworkDataPaths

if (dataPaths) {
for (const dataPath of dataPaths) {
Expand All @@ -45,7 +45,7 @@ export class SMFSupport {
this.lastDeploy = null
}

static get modFrameworkDataPath(): string[] | false {
static get modFrameworkDataPaths(): string[] | false {
if (getFlag("frameworkDeploySummaryPath") !== "AUTO")
return [getFlag("frameworkDeploySummaryPath") as string]

Expand Down

0 comments on commit a9230a8

Please sign in to comment.