alexherbo2 / krabby

A keyboard interface to the web, inspired by Kakoune
https://krabby.netlify.app
The Unlicense
311 stars 20 forks source link

build: `find` uses a feature macOS /usr/bin/find does not understand #11

Closed dottedmag closed 4 years ago

dottedmag commented 4 years ago

Running make on macOS 10.14 shows find usage. find is /usr/bin/find, from macOS.

% make
STATIC_BUILD="no" BUILD_EXTENSIONS="yes" INTERACTIVE="yes" scripts/install
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Dependencies: git zip jq
❯ Git
❯ Zip
❯ jq
Dependencies: crystal shards (Non-static build)
❯ Crystal
❯ Shards
Dependencies: xclip mpv pandoc (Optional)
❯ xclip
Please install xclip
https://github.com/astrand/xclip
❯ mpv
❯ Pandoc
Please install Pandoc
https://pandoc.org
─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Extension: Krabby
Description: A keyboard interface to the web
Repository: https://github.com/alexherbo2/krabby
Path: /Users/dottedmag/.config/krabby
Dependencies: jq zip
Building:
Copying: /Users/dottedmag/inbox/krabby/src/. → /Users/dottedmag/.config/krabby/packages
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
       find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
Copying: /Users/dottedmag/inbox/krabby/bin/. → /Users/dottedmag/.local/bin
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
       find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
<....>
alexherbo2 commented 4 years ago

Does find require a path parameter?

dottedmag commented 4 years ago

Yes, it does:

% find
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
       find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
alexherbo2 commented 4 years ago

@dottedmag Thanks for the report.

I’ll fix it when I get back home.