parse-sass.sh
    
    Bourne-Again shell script, ASCII text executable
        
            1
            #!/bin/bash 
        
            2
            set -ueo pipefail 
        
            3
             
        
            4
            if [[ ! "$(command -v sass)" ]]; then 
        
            5
              echo "'sass' needs to be installed to generate the CSS." 
        
            6
              exit 1 
        
            7
            fi 
        
            8
             
        
            9
            SASS_OPT=('--no-source-map') 
        
            10
             
        
            11
            echo "Generating the chrome-scrollbar CSS..." 
        
            12
             
        
            13
            sass "${SASS_OPT[@]}" src/chrome/chrome-scrollbar/scrollbars.{scss,css} 
        
            14
            sass "${SASS_OPT[@]}" src/chrome/chrome-scrollbar-dark/scrollbars.{scss,css} 
        
            15