Skip to content
  • Corentin ARNOULD's avatar
    Fix bash indentation and trailing whitespaces · a7e622dd
    Corentin ARNOULD authored
    Some shell scripts had tabs indentation. Made it all four spaces.
    Hope it's ok with spaces.
    
    Some files had a trailing space in it. It was not useful and takes few bytes for
    nothing.
    
    I didn't delete everything.
    
    You can find all tab indented lines with:
    
    grep -rP '^\t' 2>/dev/null
    
    And more trailing space with:
    grep -rP ' $' 2>/dev/null
    a7e622dd