You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way the binary gets discovered is unnecessarily complicated. Instead of starting an external binary (a whole new process), I recommend that the script simply checks the $PATH env variable. The syntax for it is very simple.
`root@ubuntu-s-2vcpu-4gb-amd-sfo3-01:~# which which
/usr/bin/which`
I always laugh when I do that because it reminds me of the Wizard of Oz.
"Wicked Witch of the East - Wikipedia
The Wicked Witch of the East
The Wicked Witch of the East was featured in the film The Wizard of Oz (1939), in which she is the sister of the Wicked Witch of the West. As in the book, she is killed when Dorothy's house falls on her."
There seems to be a hidden dependency on the
which
program.python-pdfkit/pdfkit/configuration.py
Line 29 in fb86d33
The way the binary gets discovered is unnecessarily complicated. Instead of starting an external binary (a whole new process), I recommend that the script simply checks the $PATH env variable. The syntax for it is very simple.
Sample solution:
The text was updated successfully, but these errors were encountered: