Skip to content

Commit 403e320

Browse files
committed
address review comment
1 parent acbbd71 commit 403e320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/storage/upgrade_project.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const NO_VERSION = '0.0.0';
3434
export const CURRENT_VERSION = '0.0.3';
3535

3636
export async function upgradeProjectIfNecessary(
37-
storage: commonStorage.Storage, projectName: string): Promise<void> {
37+
storage: commonStorage.Storage, projectName: string): Promise<void> {
3838
const projectInfo = await storageProject.fetchProjectInfo(storage, projectName);
3939
if (semver.lt(projectInfo.version, CURRENT_VERSION)) {
4040
switch (projectInfo.version) {

0 commit comments

Comments
 (0)