From 78e8e90db9e3c5083a998cfb256b043e65f7365d Mon Sep 17 00:00:00 2001 From: vpeil Date: Thu, 12 Feb 2015 21:25:31 +0100 Subject: [PATCH] :memo: a little hint added for 'Building from source for linux' *script/build* has the shebang #!/usr/bin/env node. On some system this command is no available but nodejs (e.g. on debian). The softlink fixes this problem, and all the other steps work fine. --- docs/build-instructions/linux.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index 6f9dbfde5..b36e08322 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -18,6 +18,9 @@ Ubuntu LTS 12.04 64-bit is the recommended platform. * `sudo apt-get install build-essential git libgnome-keyring-dev fakeroot` * Instructions for [Node.js](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#ubuntu-mint-elementary-os). + * Make sure the command `node` is available after Node.js installation (some sytems install it as `nodejs`). + * `which node` to check it. + * If output is emtpy run `sudo ln -s /usr/bin/nodejs /usr/bin/node` to fix this. ### Fedora / CentOS / RHEL