Alex313031 / Mercury

Firefox fork with compiler optimizations and patches from Librewolf, Waterfox, and GNU IceCat.
https://thorium.rocks/mercury
Mozilla Public License 2.0
1.16k stars 25 forks source link

Bootstrap file for linux : wrong function call #111

Closed allemand-instable closed 8 months ago

allemand-instable commented 8 months ago

the bootsrap.sh calls the wrong function, it should call makeLinuxDir instead of makeWinDir :

ie. change :

case $1 in
    --linux) makewinDir; exit 0;;
esac

to :

case $1 in
    --linux) makeLinuxDir; exit 0;;
esac
Alex313031 commented 8 months ago

@allemand-instable Thanks, twas a typo.