mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
41f69a7255
* Rename /site to /project * Add ldflags * Add go and node to the default image * Add Dart Sass to the default image * Build the extended version by default * Add "npm i" install support with custom entry script override * Adjust cache logic to speed up CGO rebuilds Closes #12920 See #12885
20 lines
No EOL
597 B
Bash
Executable file
20 lines
No EOL
597 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
export DART_SASS_VERSION=1.79.3
|
|
|
|
# If $BUILDARCH=arm64, then we need to install the arm64 version of Dart Sass,
|
|
# otherwise we install the x64 version.
|
|
ARCH="x64"
|
|
if [ "$BUILDARCH" = "arm64" ]; then
|
|
ARCH="arm64"
|
|
fi
|
|
|
|
cd /tmp
|
|
curl -LJO https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-${ARCH}.tar.gz
|
|
ls -ltr
|
|
tar -xf dart-sass-${DART_SASS_VERSION}-linux-${ARCH}.tar.gz
|
|
rm dart-sass-${DART_SASS_VERSION}-linux-${ARCH}.tar.gz && \
|
|
# The dart-sass folder is added to the PATH by the caller.
|
|
mv dart-sass /var/hugo/bin |