dhowe / AdNauseam

AdNauseam: Fight back against advertising surveillance
GNU General Public License v3.0
4.53k stars 189 forks source link

make-artifacts add segment for diff operating systems #2192

Closed mneunomne closed 1 year ago

mneunomne commented 1 year ago

Eventually when needing to build artifacts on linux or windows, we can add here if necessary.

case "$(uname -sr)" in
  Darwin*)
    echo 'Mac OS X'
    CHROME=/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
    FIREFOX=/Applications/Firefox.app/Contents/MacOS/firefox-bin
    OPERA=/Applications/Opera.app/Contents/MacOS/Opera 
    ;;
  Linux*)
    echo 'Linux'
    # to-do 
    # add here paths for linux
    ;;
  CYGWIN*|MINGW*|MINGW32*|MSYS*)
    echo 'MS Windows'
    # to-do 
    # add here paths for windows
    ;;
esac
mneunomne commented 1 year ago

https://github.com/dhowe/AdNauseam/issues/2019

dhowe commented 1 year ago

@mneunomne if supporting another OS for development is easy/quick, then we can do it, but let's not spend time on it otherwise (e.g., windows)