osnr / TabFS

🗄 Mount your browser tabs as a filesystem.
https://omar.website/tabfs/
GNU General Public License v3.0
3.82k stars 106 forks source link

Fix FreeBSD support that broke when multithreading was implemented #53

Closed yggdr closed 3 years ago

yggdr commented 3 years ago

Current master of tabfs on FreeBSD immediately returns (exit code 1, no output), ls mnt gives "Device not configured". The log says "mount_fusefs: -o auto_unmount: option not supported"

Since the auto_unmount option is already guarded with an #if !defined(__APPLE__), I just added another one for FreeBSD, and it seems to work again.

osnr commented 3 years ago

thanks!