Commit b7842e18 authored by Alexey Golubev's avatar Alexey Golubev

fixed fetch cef error

parent cba8d293
...@@ -38,18 +38,18 @@ fi ...@@ -38,18 +38,18 @@ fi
if [[ "$platform" == *"linux"* ]] if [[ "$platform" == *"linux"* ]]
then then
if [[ -f "$SCRIPTPATH/cef_binary.7z" ]] if [[ -f "cef_binary.7z" ]]
then then
echo "cef_binary already downloaded" echo "cef_binary already downloaded"
else else
wget http://d2ettrnqo7v976.cloudfront.net/cef/2454/$platform$arch/cef_binary.7z wget http://d2ettrnqo7v976.cloudfront.net/cef/2454/$platform$arch/cef_binary.7z
fi fi
if [ -d "./$SCRIPTPATH/cef" ] if [ -d cef_binary ]
then then
echo "cef_binary already extracted" echo "cef_binary already extracted"
else else
7z x -y $SCRIPTPATH/cef_binary.7z -o$SCRIPTPATH/ 7z x -y cef_binary.7z
fi fi
cp -t build ./Release/* ./Resources/* cp -r -t build/ ./cef_binary/Release/* ./cef_binary/Resources/*
fi fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment