Skip to content

Commit

Permalink
fix: Added implementation for package type 1
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Jun 2, 2022
1 parent 5ee9551 commit 10d6c44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,7 @@ class Packages {
const pkgLPKFile = path.join(pkgFolder, pkg.PackageBaseDir, fpkg.RelativeFilePath, fpkg.PackageFile);
switch (fpkg.PackageType) {
case 0:
case 1:
// Making Lazarus aware of the package
if (this._Platform != 'darwin') {
core.info(`installPackages -- executing lazbuild --add-package ${pkgLPKFile}`);
Expand Down
1 change: 1 addition & 0 deletions src/Packages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export class Packages {

switch (fpkg.PackageType) {
case 0:
case 1:
// Making Lazarus aware of the package
if (this._Platform != 'darwin') {
core.info(`installPackages -- executing lazbuild --add-package ${pkgLPKFile}`);
Expand Down

0 comments on commit 10d6c44

Please sign in to comment.