From 377ae0f12ee05caba855e36ea2041b010153cadd Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Thu, 22 Oct 2020 02:05:50 +0800 Subject: [PATCH] Use wget instead git clone to fetch EAF faster. --- README.md | 5 +++-- README.zh-CN.md | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 97a36ea..f5bd401 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,11 @@ pip uninstall fitz pip install pymupdf ``` -2. Clone this repository. +2. Download source code: ```Bash -git clone https://github.com/manateelazycat/emacs-application-framework.git --depth=1 +wget https://github.com/manateelazycat/emacs-application-framework/archive/master.zip +unzip master.zip && mv emacs-application-framework-master emacs-application-framework ``` 3. Add the full path to the EAF installation directory to your Emacs ```load-path```, then add the following to `init.el`: diff --git a/README.zh-CN.md b/README.zh-CN.md index 6894ec2..28b3df5 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -63,10 +63,11 @@ pip uninstall fitz pip install pymupdf ``` -2. 使用 ```git clone``` 下载这个仓库. +2. 下载EAF源代码: ```Bash -git clone https://github.com/manateelazycat/emacs-application-framework.git --depth=1 +wget https://github.com/manateelazycat/emacs-application-framework/archive/master.zip +unzip master.zip && mv emacs-application-framework-master emacs-application-framework ``` 3. 把EAF加入Emacs的 ```load-path```,然后在 `init.el` 中写入: