mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-17 03:45:13 +00:00
use install -t instead of make install for sassc
This commit is contained in:
parent
3d9a0665d5
commit
35f36b97fb
1 changed files with 6 additions and 1 deletions
|
@ -3,14 +3,19 @@ set -e
|
|||
|
||||
cd /tmp
|
||||
|
||||
# cleanup previously downloaded and unpacked files.
|
||||
rm -rf libsass
|
||||
rm -rf sassc
|
||||
|
||||
# download the latest build of 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
|
||||
|
||||
# build the sassc binary
|
||||
cd sassc
|
||||
make
|
||||
sudo make install
|
||||
|
||||
# isntall the sassc binary
|
||||
sudo install -t /usr/local/bin bin/sassc
|
||||
|
|
Loading…
Reference in a new issue