Skip to content

Commit

Permalink
missing awaits
Browse files Browse the repository at this point in the history
  • Loading branch information
nomo-app committed Feb 21, 2024
1 parent 3f2f70e commit 9174d69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/services/ssh-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async function validateDeploymentConfig(deployTarget: string, rawSSH: any) {
}
}

manifestChecks({
await manifestChecks({
manifestFilePath: manifestPath,
serverWebOnVersion,
serverWebOnId,
Expand Down
2 changes: 1 addition & 1 deletion src/util/validate-manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export async function manifestChecks({
}): Promise<void> {
const nomoManifestContent = fs.readFileSync(manifestFilePath, "utf-8");
const nomoManifest: NomoManifest = JSON.parse(nomoManifestContent);
validateManifest({
await validateManifest({
manifest: nomoManifest,
serverWebOnVersion,
serverWebOnId,
Expand Down

0 comments on commit 9174d69

Please sign in to comment.