diff --git a/src/apkbuild-parser/repo.ts b/src/apkbuild-parser/repo.ts index f36e5bf..aff86fd 100755 --- a/src/apkbuild-parser/repo.ts +++ b/src/apkbuild-parser/repo.ts @@ -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 diff --git a/src/index.ts b/src/index.ts index 36234ee..044a746 100755 --- a/src/index.ts +++ b/src/index.ts @@ -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; } }