diff options
author | Tuure | 2024-11-17 15:25:18 +0200 |
---|---|---|
committer | Tuure | 2024-11-17 15:25:18 +0200 |
commit | cb35a563847ba52afec3885bc53080a81f1f39da (patch) | |
tree | 26ec295bd09d77aaeb003c1c2a3720e40e67aa6a /PKGBUILD | |
parent | be7327b1f7604bfac1f24799dbe273d9b05b1910 (diff) | |
download | aur-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-- | PKGBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |