File tree Expand file tree Collapse file tree
Build/libHttpClient.Linux Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414 steps :
1515 - uses : actions/checkout@v4
1616
17- - name : Build libHttpClient
18- run : bash Build/libHttpClient.Linux/libHttpClient_Linux.bash -c Release
Original file line number Diff line number Diff line change 4545mkdir -p " $SCRIPT_DIR " /../../Out/x64/" $CONFIGURATION " /libcurl.Linux
4646cp -R " $PWD " /lib/.libs/* " $SCRIPT_DIR " /../../Out/x64/" $CONFIGURATION " /libcurl.Linux
4747
48- make clean
48+ if [ -f Makefile ] && make -n clean > /dev/null 2>&1 ; then
49+ make clean
50+ fi
4951popd
Original file line number Diff line number Diff line change 5050fi
5151
5252pushd $OPENSSL_SRC
53- make clean
53+ if [ -f Makefile ] && make -n clean > /dev/null 2>&1 ; then
54+ make clean
55+ fi
5456sed -i -e ' s/\r$//' Configure
5557
5658if [ " $CONFIGURATION " = " Debug" ]; then
@@ -70,5 +72,7 @@ cp -R "$PWD"/libcrypto.a "$SCRIPT_DIR"/../../Out/x64/"$CONFIGURATION"/libcrypto.
7072mkdir -p " $SCRIPT_DIR " /../../Out/x64/" $CONFIGURATION " /libssl.Linux
7173cp -R " $PWD " /libssl.a " $SCRIPT_DIR " /../../Out/x64/" $CONFIGURATION " /libssl.Linux
7274
73- make clean
75+ if [ -f Makefile ] && make -n clean > /dev/null 2>&1 ; then
76+ make clean
77+ fi
7478popd
You can’t perform that action at this time.
0 commit comments