Remove arch-specific downgrade pkg info

This commit is contained in:
hensm
2019-04-14 09:36:16 +01:00
parent 8203f0caa4
commit 3cfb9521c5

View File

@@ -41,7 +41,7 @@ sudo dnf install fx_cast_bridge-<version>-<arch>.rpm
### Requirements ### Requirements
* Node.js 10.x (pkg doesn't support node11 targets yet) * Node.js 10.x (https://git.io/fjmgL)
* dpkg (for building deb packages) * dpkg (for building deb packages)
* rpm (for building rpm packages) * rpm (for building rpm packages)
* macOS (for building macOS installer packages) * macOS (for building macOS installer packages)
@@ -67,11 +67,12 @@ sudo dnf install dpkg rpm-build mingw-nsis
Archlinux: Archlinux:
At the moment, `pkg` has a [bug](https://github.com/zeit/pkg/issues/584), until fixed nodejs has to be downgraded to `10.12.0`:
```sh ```sh
sudo pacman -S nvm dpkg sudo pacman -S nvm dpkg
yay -S rpm-org nsis yay -S rpm-org nsis
# Downgrade to node10
echo 'source /usr/share/nvm/init-nvm.sh' >> ~/.bashrc echo 'source /usr/share/nvm/init-nvm.sh' >> ~/.bashrc
nvm install 10.12.0 nvm install 10.12.0
``` ```