This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env bash | |
| # This script file is used to compare to sexpr files | |
| # with sexpr python file. Spaces and line positioning will be ignored | |
| if [[ $# -ne 2 ]]; then | |
| echo "Usage: $0 kicad_mod1 kicad_mod2" | |
| exit 1 | |
| fi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/python3 | |
| import re | |
| rr = re.compile(r"([+-])(X\sP\w.*)([TB])") | |
| filepath = "2151.diff.patch" | |
| itms = {} | |
| add = 0 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| P=$1 | |
| if [ -n "$P" ] && [ "$P" -eq "$P" ] 2>/dev/null; then | |
| echo "adding stuff for PR $P" | |
| else | |
| echo not a number | |
| exit -1 | |
| fi |