From 248618f91b5e5079517aa6e036d50fa6174347f6 Mon Sep 17 00:00:00 2001 From: Hyeon Kim Date: Thu, 21 Jan 2016 00:15:32 +0900 Subject: [PATCH] Add install script Existing fisherman installation script installs fisherman into $PWD, which is undesirable. Most users will want this as default. Maybe http://install.fisherman.sh can point this file in the near future. Closes #59 --- tools/install.fish | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tools/install.fish diff --git a/tools/install.fish b/tools/install.fish new file mode 100644 index 0000000..9824985 --- /dev/null +++ b/tools/install.fish @@ -0,0 +1,6 @@ +pushd + git clone https://github.com/fisherman/fisherman ~/.fisherman --depth=1 + cd ~/.fisherman + make +popd +exec fish < /dev/tty