summarylogtreecommitdiffstats
path: root/no-git-checkout.patch
diff options
context:
space:
mode:
authortercean2020-08-05 10:48:38 +0200
committertercean2020-08-05 10:48:38 +0200
commitbd71a4f238ff8366414eab2b4892a5e8b2711033 (patch)
tree364284ef8346d4466d232d49b38cd9550f6cdab1 /no-git-checkout.patch
parent46ce1b11f97629c87aa39535ba7e29739917e50b (diff)
downloadaur-bd71a4f238ff8366414eab2b4892a5e8b2711033.tar.gz
remove old patch file
Diffstat (limited to 'no-git-checkout.patch')
-rw-r--r--no-git-checkout.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/no-git-checkout.patch b/no-git-checkout.patch
deleted file mode 100644
index e768e81b1b12..000000000000
--- a/no-git-checkout.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --unified --recursive --text deltachat-desktop-1.4.2-orig/bin/build-shared-version-info.js deltachat-desktop-1.4.2-no-git/bin/build-shared-version-info.js
---- deltachat-desktop-1.4.2-orig/bin/build-shared-version-info.js 2020-06-26 12:55:04.000000000 +0000
-+++ deltachat-desktop-1.4.2-no-git/bin/build-shared-version-info.js 2020-06-26 16:04:17.587613647 +0000
-@@ -6,7 +6,12 @@
- const { status, stdout, stderr } = spawnSync('git', ['describe'])
- if (status !== 0) {
- console.log(stderr)
-- throw new Error('getting git commit failed')
-+ const package = await fs.readJSON(join(__dirname, '../package.json'))
-+ return {
-+ VERSION: package.version,
-+ BUILD_TIMESTAMP: Date.now(),
-+ GIT_REF: "None",
-+ }
- }
- const package = await fs.readJSON(join(__dirname, '../package.json'))
- return {