diff --git a/install b/install index 9c8059d..3d07565 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -u -version=0.16.3 +version=0.16.4 auto_completion= key_bindings= update_config=2 @@ -88,17 +88,6 @@ check_binary() { return 1 } -symlink() { - echo " - Creating symlink: bin/$1 -> bin/fzf" - (cd "$fzf_base"/bin && - rm -f fzf && - ln -sf $1 fzf) - if [ $? -ne 0 ]; then - binary_error="Failed to create symlink" - return 1 - fi -} - link_fzf_in_path() { if which_fzf="$(command -v fzf)"; then echo " - Found in \$PATH" @@ -124,9 +113,6 @@ download() { echo " - Already exists" check_binary && return fi - if [ -x "$fzf_base"/bin/$1 ]; then - symlink $1 && check_binary && return - fi link_fzf_in_path && return fi mkdir -p "$fzf_base"/bin && cd "$fzf_base"/bin @@ -147,12 +133,12 @@ download() { fi set +o pipefail - if [ ! -f $1 ]; then + if [ ! -f fzf ]; then binary_error="Failed to download ${1}" return fi - chmod +x $1 && symlink $1 && check_binary + chmod +x fzf && check_binary } # Try to download binary executable diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index b243dbd..055dab3 100644 --- a/man/man1/fzf-tmux.1 +++ b/man/man1/fzf-tmux.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf-tmux 1 "Jan 2017" "fzf 0.16.3" "fzf-tmux - open fzf in tmux split pane" +.TH fzf-tmux 1 "Feb 2017" "fzf 0.16.4" "fzf-tmux - open fzf in tmux split pane" .SH NAME fzf-tmux - open fzf in tmux split pane diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 74ac2a4..3d33d43 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf 1 "Jan 2017" "fzf 0.16.3" "fzf - a command-line fuzzy finder" +.TH fzf 1 "Feb 2017" "fzf 0.16.4" "fzf - a command-line fuzzy finder" .SH NAME fzf - a command-line fuzzy finder diff --git a/src/Makefile b/src/Makefile index d1d0c14..102229b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -52,23 +52,23 @@ all: fzf/$(BINARY) ifeq ($(GOOS),windows) release: fzf/$(BINARY32) fzf/$(BINARY64) - cd fzf && cp $(BINARY32) $(RELEASE32).exe && zip $(RELEASE32).zip $(RELEASE32).exe - cd fzf && cp $(BINARY64) $(RELEASE64).exe && zip $(RELEASE64).zip $(RELEASE64).exe - cd fzf && rm -f $(RELEASE32).exe $(RELEASE64).exe + cd fzf && cp -f $(BINARY32) fzf.exe && zip $(RELEASE32).zip fzf.exe + cd fzf && cp -f $(BINARY64) fzf.exe && zip $(RELEASE64).zip fzf.exe + cd fzf && rm -f fzf.exe else ifeq ($(GOOS),linux) release: fzf/$(BINARY32) fzf/$(BINARY64) fzf/$(BINARYARM5) fzf/$(BINARYARM6) fzf/$(BINARYARM7) fzf/$(BINARYARM8) - cd fzf && cp $(BINARY32) $(RELEASE32) && tar -czf $(RELEASE32).tgz $(RELEASE32) - cd fzf && cp $(BINARY64) $(RELEASE64) && tar -czf $(RELEASE64).tgz $(RELEASE64) - cd fzf && cp $(BINARYARM5) $(RELEASEARM5) && tar -czf $(RELEASEARM5).tgz $(RELEASEARM5) - cd fzf && cp $(BINARYARM6) $(RELEASEARM6) && tar -czf $(RELEASEARM6).tgz $(RELEASEARM6) - cd fzf && cp $(BINARYARM7) $(RELEASEARM7) && tar -czf $(RELEASEARM7).tgz $(RELEASEARM7) - cd fzf && cp $(BINARYARM8) $(RELEASEARM8) && tar -czf $(RELEASEARM8).tgz $(RELEASEARM8) - cd fzf && rm -f $(RELEASE32) $(RELEASE64) $(RELEASEARM5) $(RELEASEARM6) $(RELEASEARM7) $(RELEASEARM8) + cd fzf && cp -f $(BINARY32) fzf && tar -czf $(RELEASE32).tgz fzf + cd fzf && cp -f $(BINARY64) fzf && tar -czf $(RELEASE64).tgz fzf + cd fzf && cp -f $(BINARYARM5) fzf && tar -czf $(RELEASEARM5).tgz fzf + cd fzf && cp -f $(BINARYARM6) fzf && tar -czf $(RELEASEARM6).tgz fzf + cd fzf && cp -f $(BINARYARM7) fzf && tar -czf $(RELEASEARM7).tgz fzf + cd fzf && cp -f $(BINARYARM8) fzf && tar -czf $(RELEASEARM8).tgz fzf + cd fzf && rm -f fzf else release: fzf/$(BINARY32) fzf/$(BINARY64) - cd fzf && cp $(BINARY32) $(RELEASE32) && tar -czf $(RELEASE32).tgz $(RELEASE32) - cd fzf && cp $(BINARY64) $(RELEASE64) && tar -czf $(RELEASE64).tgz $(RELEASE64) - cd fzf && rm -f $(RELEASE32) $(RELEASE64) + cd fzf && cp -f $(BINARY32) fzf && tar -czf $(RELEASE32).tgz fzf + cd fzf && cp -f $(BINARY64) fzf && tar -czf $(RELEASE64).tgz fzf + cd fzf && rm -f fzf endif release-all: clean test diff --git a/src/constants.go b/src/constants.go index 4936693..d5246db 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - version = "0.16.3" + version = "0.16.4" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond