-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
bugSomething isn't workingSomething isn't working
Description
when installing ioc
on FreeBSD-12.1-RELEASE, trying to run it will yield:
ioc: Command not found.
root@freebsd:~ # /usr/local/bin/ioc
/usr/local/bin/ioc: Command not found.
root@freebsd:~ #
the reason is that the python version is hard-coded, and with 12.1 it's wrong:
#!/usr/local/bin/python3.6
import sys
import os.path
LIB_DIR = "/usr/local/lib/ioc"
if LIB_DIR.startswith("/") is False:
__dirname = os.path.dirname(os.path.abspath(__file__))
LIB_DIR = "/usr/local/lib/ioc"
# etc…
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working