Skip to content

Commit

Permalink
Update repo.ts
Browse files Browse the repository at this point in the history
Fix incorrect truncate usage
  • Loading branch information
z3ntu committed Nov 1, 2022
1 parent 412f7c5 commit 7f56d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apkbuild-parser/repo.ts
@@ -1,7 +1,7 @@
import {Package, Patch} from "../helpers/types";
const PATCH_PLASMA_WORKSPACE_REMOVE_0001PATCH: Patch = {cmd: 'truncate -s 0 ./prolinux-nightly/plasma-workspace/src/0001-widgetexplorer-Dont-recurse-into-applets-containments.patch'};
const PATCH_KWAYLAND_REMOVE_0001PATCH: Patch = {cmd: 'truncate -s 0 ./prolinux-nightly/kwayland/src/0001-PlasmaWindowManagement-Avoid-unbounded-recursion-and-delay-in-readData.patch'};
const PATCH_KIMAGEFORMATS_REMOVE_0001PATCH: Patch = {cmd: 'truncate -s ./prolinux-nightly/kimageformats/src/0001-avif-revert-previous-commit.patch'}
const PATCH_KIMAGEFORMATS_REMOVE_0001PATCH: Patch = {cmd: 'truncate -s 0 ./prolinux-nightly/kimageformats/src/0001-avif-revert-previous-commit.patch'}

// List of packages and their git repositories
export const repository = new Map<string,Package>([
Expand Down

0 comments on commit 7f56d0f

Please sign in to comment.