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 6c23ba3 commit 0adfbffCopy full SHA for 0adfbff
packages/core/src/shared/sam/utils.ts
@@ -110,13 +110,14 @@ export async function updateRecentResponse(
110
}
111
112
const buildProcessMementoRootKey = 'samcli.build.processes'
113
+const globalIdentifier = 'global'
114
115
/**
116
* Returns true if there's an ongoing build process for the provided template, false otherwise
117
* @Param templatePath The path to the template.yaml file
118
*/
119
function isBuildInProgress(templatePath: string): boolean {
- return getRecentResponse(buildProcessMementoRootKey, 'global', templatePath) !== undefined
120
+ return getRecentResponse(buildProcessMementoRootKey, globalIdentifier, templatePath) !== undefined
121
122
123
0 commit comments