summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorTuure2024-11-17 15:25:18 +0200
committerTuure2024-11-17 15:25:18 +0200
commitcb35a563847ba52afec3885bc53080a81f1f39da (patch)
tree26ec295bd09d77aaeb003c1c2a3720e40e67aa6a /PKGBUILD
parentbe7327b1f7604bfac1f24799dbe273d9b05b1910 (diff)
downloadaur-cb35a563847ba52afec3885bc53080a81f1f39da.tar.gz
Revert removal of node v23.2 workaround
I was too quick, this still errors out Still use v23.1 until it settles
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD8
1 files changed, 6 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 9037c872b996..b8eec5f7aeb1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname="vivify"
pkgver="0.6.2"
-pkgrel=2
+pkgrel=3
pkgdesc="Markdown preview tool which can be used standalone or plug into an editor like (Neo)Vim"
arch=("x86_64")
url="https://github.com/jannis-baum/vivify"
@@ -31,7 +31,11 @@ build() {
# Using system node results in a segfaulting binary
# As a workaround, use latest node from nvm
_ensure_local_nvm
- nvm install node
+
+ # v23.1.0 instead of v23.2.0
+ # Workaround for:
+ # https://github.com/nodejs/node/issues/55826
+ nvm install 23.1.0
yarn install
VIV_VERSION="v${pkgver}-${pkgrel}-aur" make linux