mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-09-25 16:36:37 +08:00
Set correct brackets
This commit is contained in:
parent
97c6bfaf9c
commit
531380d6d4
@ -45,9 +45,9 @@ fi
|
||||
#Pack binary_distrib
|
||||
if [ ${TARGETARCH} == 'amd64' ]; then
|
||||
cd ../binary_distrib/linux64
|
||||
if [ ${BUILD_TYPE} == 'Release' ]; then echo "Stripping binary..." && strip bin/lib/linux64/libcef.so fi
|
||||
if [ ${BUILD_TYPE} == 'Release' ]; then (echo "Stripping binary..." && strip bin/lib/linux64/libcef.so) fi
|
||||
else
|
||||
cd ../binary_distrib/linux32
|
||||
if [ ${BUILD_TYPE} == 'Release' ]; then echo "Stripping binary..." && strip bin/lib/linux32/libcef.so fi
|
||||
if [ ${BUILD_TYPE} == 'Release' ]; then (echo "Stripping binary..." && strip bin/lib/linux32/libcef.so) fi
|
||||
fi
|
||||
tar -czvf ../../binary_distrib.tar.gz *
|
||||
|
Loading…
Reference in New Issue
Block a user