From 531380d6d40fca1e120e768d225429a599ac960b Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Tue, 16 Nov 2021 01:59:33 +0100 Subject: [PATCH] Set correct brackets --- scripts/run_linux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_linux.sh b/scripts/run_linux.sh index c6d7616..e40ba2e 100644 --- a/scripts/run_linux.sh +++ b/scripts/run_linux.sh @@ -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 *