diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2017-06-02 18:19:21 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2017-06-02 18:19:21 +0900 |
| commit | 34f16e5b7ddf18cae15ba646583c492ed8437e73 (patch) | |
| tree | a66eedacf0baef2847654db2742e3a1ef9509573 /install | |
| parent | 83e9af6601f2a7b7fc0fff06fc6767b7054a5467 (diff) | |
| download | fzf-34f16e5b7ddf18cae15ba646583c492ed8437e73.tar.gz | |
Fix Makefile and install script for the new project layout
Diffstat (limited to 'install')
| -rwxr-xr-x | install | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -169,12 +169,12 @@ if [ -n "$binary_error" ]; then echo " - $binary_error !!!" fi if command -v go > /dev/null; then - echo -n "Building binary (go get -u github.com/junegunn/fzf/src/fzf) ... " + echo -n "Building binary (go get -u github.com/junegunn/fzf) ... " if [ -z "${GOPATH-}" ]; then export GOPATH="${TMPDIR:-/tmp}/fzf-gopath" mkdir -p "$GOPATH" fi - if go get -u github.com/junegunn/fzf/src/fzf; then + if go get -u github.com/junegunn/fzf; then echo "OK" cp "$GOPATH/bin/fzf" "$fzf_base/bin/" else |
