mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-11 20:18:09 +02:00
7 lines
256 B
Bash
7 lines
256 B
Bash
#!/bin/bash
|
|
set -eux
|
|
VERSION=0.5.0
|
|
|
|
curl -LsS https://github.com/leafo/lessphp/archive/v"$VERSION".tar.gz -o /tmp/lessphp.tar.gz
|
|
tar xfz /tmp/lessphp.tar.gz --strip-components 1 lessphp-$VERSION/lessc.inc.php lessphp-$VERSION/LICENSE
|
|
rm /tmp/lessphp.tar.gz |