We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dcfdaa commit edd523eCopy full SHA for edd523e
.github/workflows/CI.yml
@@ -95,13 +95,12 @@ jobs:
95
fi
96
97
wget https://github.com/${REPO}/archive/refs/tags/${TAG}.zip -q > /dev/null
98
- 7z x ${TAG}.zip
+ 7z x ${TAG}.zip > /dev/null
99
100
REPO_NAME=`echo "${REPO}" | grep -Po '(?<=\/).+'`
101
- INCLUDE_PATH="$(pwd)/${TAG}/${OVERRIDE_INCLUDE_PATH:-amxmodx/scripting/include}"
+ INCLUDE_PATH="$(pwd)/${REPO_NAME}-${TAG}/${OVERRIDE_INCLUDE_PATH:-amxmodx/scripting/include}"
102
103
- ls $(pwd)
104
- ls $(pwd)/${TAG}
+ ls $(pwd)/${REPO_NAME}-${TAG}
105
ls $INCLUDE_PATH
106
107
echo "-i\"${INCLUDE_PATH}\""
0 commit comments