Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Seshpenguin committed Sep 26, 2022
1 parent e27432e commit 354fc7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apkbuild-parser/repo.ts
Expand Up @@ -8,7 +8,7 @@ export const repository = new Map<string,Package>([

// plasma
["bluedevil", { name: "bluedevil", repo: "https://invent.kde.org/plasma/bluedevil.git", aports_repo: "community", extraDepends: ["kcmutils-dev", "kdoctools-dev"]}],
["breeze", { name: "breeze", repo: "https://invent.kde.org/plasma/breeze.git", aports_repo: "community"}],
["breeze", { name: "breeze", repo: "https://invent.kde.org/plasma/breeze.git", aports_repo: "community", extraDepends: ["kcmutils-dev"]}],
["breeze-grub", { name: "breeze-grub", repo: "https://invent.kde.org/plasma/breeze-grub.git", aports_repo: "community"}],
["breeze-gtk", { name: "breeze-gtk", repo: "https://invent.kde.org/plasma/breeze-gtk.git", aports_repo: "community"}],
["breeze-plymouth", { name: "breeze-plymouth", repo: "https://invent.kde.org/plasma/breeze-plymouth.git", aports_repo: "community"}],
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -194,7 +194,7 @@ async function buildPackage(pkg: Package) {
} catch (e) {
console.error("❌ (buildPackage()) Failed to compile " + pkg.name);
// remove pkg folder
exec(`apk del .makedepends-${pkg.name}`);
exec(`sudo apk del .makedepends-${pkg.name}`);
const pkgDir = path.join(WORKDIR, "prolinux-nightly", pkg.name);
exec(`rm -rf ${pkgDir}`);
throw e;
Expand Down

0 comments on commit 354fc7f

Please sign in to comment.