From 7bd67063f789fa3261fd3347c4c7e09e59810730 Mon Sep 17 00:00:00 2001 From: PePa Date: Wed, 11 Jul 2018 21:13:22 +0700 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 54893f6..4b723c9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # tldr-bash-client - +**The main repo is now on Gitlab: https://gitlab.com/pepa65/tldr-bash-client** * version 0.39 ### Bash client for tldr: community driven man-by-example From 73a49fb016bb0fe21b33c282a689554994e1e11a Mon Sep 17 00:00:00 2001 From: PePa Date: Wed, 11 Jul 2018 21:14:54 +0700 Subject: [PATCH 2/3] To Gitlab --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b723c9..0527c10 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ +## The main repo is now on Gitlab: https://gitlab.com/pepa65/tldr-bash-client !! # tldr-bash-client -**The main repo is now on Gitlab: https://gitlab.com/pepa65/tldr-bash-client** * version 0.39 ### Bash client for tldr: community driven man-by-example From 2dbdfc8648a9c6918cbf0880885aaf9d20b890aa Mon Sep 17 00:00:00 2001 From: Borek Bernard Date: Wed, 11 Jul 2018 19:06:47 +0200 Subject: [PATCH 3/3] Fixes unzip on Windows --- tldr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldr b/tldr index 57bf1fd..c4d4226 100755 --- a/tldr +++ b/tldr @@ -380,7 +380,7 @@ Cache_fill(){ Err "Could not download pages archive from $U$zip_url$XU with $dl" exit 8 } - $unzip "$tmp/pages.zip" -d "$tmp" 'pages/*' || { + $unzip "$tmp/pages.zip" -d "$tmp" 'pages/**' || { rm -- "$tmp" Err "Couldn't unzip the cache archive on $tmp/pages.zip" exit 9