mirror of https://github.com/writeas/writefreely
A focused writing and publishing space.
https://write.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
218 B
10 lines
218 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Install Less via npm
|
||
|
if [ ! -e "$(which lessc)" ]; then
|
||
|
sudo npm install -g less
|
||
|
sudo npm install -g less-plugin-clean-css
|
||
|
else
|
||
|
echo LESS $(npm view less version 2>&1 | grep -v WARN) is installed
|
||
|
fi
|