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 6177cf6 commit fee0addCopy full SHA for fee0add
scriptmodules/admin/builder.sh
@@ -57,6 +57,10 @@ function module_builder() {
57
# initial clean in case anything was in the build folder when calling
58
local mode
59
for mode in clean depends sources build install create_bin clean remove "depends remove"; do
60
+ # don't try and create binary archives for modules with an install_bin such as sdl1/sdl2
61
+ if [[ "$mode" == "create_bin" ]] && fnExists "install_bin_${id}"; then
62
+ continue
63
+ fi
64
# continue to next module if not available or an error occurs
65
rp_callModule "$id" $mode || break
66
done
0 commit comments