mirror of
https://github.com/writeas/writefreely
synced 2024-12-11 16:18:07 +01:00
10 lines
224 B
Bash
Executable File
10 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Install Less via npm
|
|
if [ ! -e "$(which lessc)" ]; then
|
|
sudo npm install -g less@3.5.3
|
|
sudo npm install -g less-plugin-clean-css
|
|
else
|
|
echo LESS $(npm view less version 2>&1 | grep -v WARN) is installed
|
|
fi
|