Skip to content

Commit

Permalink
Warnings aren't errors anymore
Browse files Browse the repository at this point in the history
Too many outdated/archived dependencies with warnings.
  • Loading branch information
peace-maker committed Dec 17, 2024
1 parent 2a8d0ab commit 3e0c6ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 3e0c6ff

Please sign in to comment.