Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Seshpenguin committed Feb 7, 2023
1 parent ad32441 commit d62507e
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 @@ -6,7 +6,7 @@ const PATCH_KWIN_REMOVE_0001PATCH: Patch = {cmd: 'truncate -s 0 ./prolinux-night

export const globalPatches: Patch[] = [
// Append a line to the APKBUILD file
{cmd: 'echo "options=\"$options !strip\"" >> APKBUILD', runInDir: true},
{cmd: `echo "options=\"$options !strip\"" >> APKBUILD`, runInDir: true},
];

// List of packages and their git repositories
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -266,7 +266,7 @@ async function buildPackage(pkg: Package) {
// remove pkg folder
exec(`sudo apk del .makedepends-${pkg.name}`);
const pkgDir = path.join(WORKDIR, "prolinux-nightly", pkg.name);
exec(`rm -rf ${pkgDir}`);
//exec(`rm -rf ${pkgDir}`);
throw e;
}
}

0 comments on commit d62507e

Please sign in to comment.