mirror of
https://github.com/lovell/sharp.git
synced 2025-07-10 02:50:15 +02:00
8 lines
288 B
Bash
Executable File
8 lines
288 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Install Node.js on openSUSE 13.2
|
|
zypper addrepo http://download.opensuse.org/repositories/devel:languages:nodejs/openSUSE_13.2/devel:languages:nodejs.repo
|
|
zypper --gpg-auto-import-keys refresh
|
|
zypper --non-interactive install gcc-c++ make nodejs-devel npm
|
|
npm install -g npm
|