File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ before_script:
5151 rules :
5252 - if : ' $CI_PROJECT_PATH == "CalcProgrammer1/OpenRGB"'
5353 when : on_success
54+ - if : $CI_PIPELINE_SOURCE == "push"
55+ when : manual
56+ allow_failure : true
5457
5558# -----------------------------------------------------------------------#
5659# Linux (AppImage) 32-bit Build Target #
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ MAIN_FILE='Supported Devices.md'
2323# make -j$(nproc)
2424
2525# # The HID list is produced from each "REGISTER_DETECTOR" macro replacement.
26- DELIMITER=' ‖ '
26+ DELIMITER=$' \x01 '
2727# # | callback_function | VID | PID | Name |
2828HID_LIST=$( grep -hR -e " static\ HIDDeviceDetector" . | cut -d ' (' -f 2- | awk -F , -v delim=" ${DELIMITER} " ' { print $2 ":"delim $3 delim $4 delim $1 delim }' )
2929I2C_LIST=$( grep -hR -e " static\ I2CPCIDeviceDetector" . | cut -d ' (' -f 2- | awk -F , -v delim=" ${DELIMITER} " ' { print $2 ":"delim $3 delim $4 delim $5 delim $6 delim $1 delim }' )
233233 do
234234 case $type in
235235 USB)
236- IFS=" ${DELIMITER} " read null vid pid device_name null <<< " $ device"
236+ IFS=" ${DELIMITER} " read null vid pid device_name null <<< " ${ device} "
237237 # Remove leading hex signifier from $vid and $pid
238238 vid=${vid/ 0x/ }
239239 pid=${pid/ 0x/ }
You can’t perform that action at this time.
0 commit comments