mirror of
https://github.com/mthenw/frontail.git
synced 2026-04-26 02:05:57 +03:00
[GH-ISSUE #81] Error: spawn tail ENOENT on Windows 7 and Windows 8 #56
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/frontail#56
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @danielpacak on GitHub (Sep 27, 2016).
Original GitHub issue: https://github.com/mthenw/frontail/issues/81
I got the following error on Windows 8 and Windows 7 with Node v4.4.5:
However it works perfectly fine on Windows when I run the frontail through Git Bash. Is there something OS specific in the implementation that might cause the error?
@mthenw commented on GitHub (Sep 27, 2016):
Hey @danielpacak, frontail requires
tailcommand available in OS. It's not present in Windows.I guess that "Git Bash" is some kind of linux shell emulation, isn't it?
@danielpacak commented on GitHub (Sep 27, 2016):
Ah, my bad. I thought that you're watching log files programmatically with the
fspackage, streams and stuff instead of spawning a child tail process. Indeed Git Bash provides a shell emulator with some useful linux commands includingtail, hence it works. Anyways the error message speaks for itself.