From 3e0c6ffe6e00d1ea1b4ea7e7f2ead75c63842a2a Mon Sep 17 00:00:00 2001 From: Peace-Maker Date: Tue, 17 Dec 2024 13:54:32 +0100 Subject: [PATCH] Warnings aren't errors anymore Too many outdated/archived dependencies with warnings. --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 321c385..f4373ef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -98,16 +98,16 @@ jobs: if [ "$f" != "smrpg_chattags.sp" ]; then echo -e "\nCompiling $f..." smxfile="`echo $f | sed -e 's/\.sp$/\.smx/'`" - spcomp -E $INCLUDE_PATHS $f -o$PACKAGE_PATH/plugins/$smxfile + spcomp $INCLUDE_PATHS $f -o$PACKAGE_PATH/plugins/$smxfile fi done # compile both versions of chattags for both chat processors.. echo -e "\nCompiling smrpg_chattags.sp for Chat Processor..." - spcomp -E $INCLUDE_PATHS smrpg_chattags.sp -o$PACKAGE_PATH/plugins/smrpg_chattags_cp.smx + spcomp $INCLUDE_PATHS smrpg_chattags.sp -o$PACKAGE_PATH/plugins/smrpg_chattags_cp.smx echo -e "\nCompiling smrpg_chattags.sp for Simple Chat Processor..." - spcomp -E $INCLUDE_PATHS smrpg_chattags.sp -o$PACKAGE_PATH/plugins/smrpg_chattags_scp.smx USE_SIMPLE_PROCESSOR= + spcomp $INCLUDE_PATHS smrpg_chattags.sp -o$PACKAGE_PATH/plugins/smrpg_chattags_scp.smx USE_SIMPLE_PROCESSOR= # compile all upgrades for f in upgrades/*.sp @@ -116,7 +116,7 @@ jobs: if [ "$f" != "upgrades/smrpg_upgrade_example.sp" ]; then echo -e "\nCompiling upgrade $f..." smxfile="`echo $f | sed -e 's/\.sp$/\.smx/'`" - spcomp -E $INCLUDE_PATHS $f -o$PACKAGE_PATH/plugins/$smxfile + spcomp $INCLUDE_PATHS $f -o$PACKAGE_PATH/plugins/$smxfile fi done