Skip to content

Commit dfb330e

Browse files
committed
Fixed bug in package.py
1 parent f64db41 commit dfb330e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def isChangeLogUpdatedWithPackageJsonVersion(packageJsonVersion) -> bool:
3535
def isAllPackagesInstalledLocally() -> bool:
3636
process = subprocess.Popen(["cmd", "/c", "npm", "list", "--production", "--parseable", "--depth=99999", "--loglevel=error"], stderr=subprocess.PIPE)
3737
out = process.stderr.read()
38-
success = (len(out) == 0);
38+
success = (len(out) == 0)
3939
if (not success):
4040
print(f"Error while checking if all packages is installed locally: {out}")
4141
return success
@@ -44,7 +44,7 @@ def isAllPackagesInstalledLocally() -> bool:
4444
def packageExtension() -> bool:
4545
process = subprocess.Popen(["cmd", "/c", "vsce", "package"], stderr=subprocess.PIPE)
4646
out = process.stderr.read()
47-
success = (len(out) == 0);
47+
success = (len(out) == 0)
4848
if (not success):
4949
print(f"Error while packaging: {out}")
5050
return success

0 commit comments

Comments
 (0)