Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorCedric Girard <x-dark.github@valinor.fr>2019-03-14 10:28:40 +0300
committerAleksander Machniak <alec@alec.pl>2019-03-14 10:28:40 +0300
commitc7677a57227c7a36607c4099dc8c4ce294abb59e (patch)
treefd3a549c70e925acf8ea5af83203438e13139f28 /bin
parent982919582c4b687172ab213f23cdadb0c43e0354 (diff)
Follow redirection when downloading with curl (#6681)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cssshrink.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cssshrink.sh b/bin/cssshrink.sh
index 604a0467c..55cb180d8 100755
--- a/bin/cssshrink.sh
+++ b/bin/cssshrink.sh
@@ -24,7 +24,7 @@ if [ ! -r "$JAR_DIR/yuicompressor.jar" ]; then
if which wget >/dev/null 2>&1 && which unzip >/dev/null 2>&1; then
wget "$COMPILER_URL" -O "/tmp/$$.zip"
elif which curl >/dev/null 2>&1 && which unzip >/dev/null 2>&1; then
- curl "$COMPILER_URL" -o "/tmp/$$.zip"
+ curl -L "$COMPILER_URL" -o "/tmp/$$.zip"
else
echo "Please download $COMPILER_URL and extract compiler.jar to $JAR_DIR/."
exit 1