mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-06 08:16:19 +02:00
16 lines
235 B
Bash
Executable File
16 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd /tmp
|
|
|
|
rm -rf libsass
|
|
rm -rf sassc
|
|
|
|
git clone --depth=1 git://github.com/sass/libsass.git
|
|
git clone --depth=1 git://github.com/sass/sassc.git
|
|
|
|
export SASS_LIBSASS_PATH=/tmp/libsass
|
|
|
|
cd sassc
|
|
make
|
|
sudo make install |