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
After using make build_c; make install_c or make and make install, then following the sourcing instructions I received FAILED TO FIND A FILE TO PARSE! upon using ash_query.
Digging through the source I eventually found reference to $HOME/.ash/queries. touching this file made everything work as expected.
The text was updated successfully, but these errors were encountered:
…ries`
Without this, running `ash_query -Q` results in:
FAILED TO FIND A FILE TO PARSE!
This is because the C version of `get_query` is looking for queries in
`/etc/ash/queries` and `~/.ash/queries`, but not the default installation
path of `/user/local/etc/advanced-shell-history/queries`, which is
referenced in the `ASH_CFG_SYSTEM_QUERY_FILE` environment variable.
This commit adds the file referenced by this environment variable to the
list of queries files to load.
Fixesbarabo#11
After using make
build_c; make install_c
ormake and make install
, then following the sourcing instructions I receivedFAILED TO FIND A FILE TO PARSE!
upon usingash_query
.Digging through the source I eventually found reference to
$HOME/.ash/queries
. touching this file made everything work as expected.The text was updated successfully, but these errors were encountered: