Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install_nkf.sh #5300

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions tools/installers/install_nkf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ mkdir -p nkf
(
set -euo pipefail
cd nkf
wget --tries=3 https://ja.osdn.net/dl/nkf/nkf-2.1.4.tar.gz
tar zxvf nkf-2.1.4.tar.gz
wget --tries=3 https://github.com/nurse/nkf/archive/refs/tags/v2_1_4.tar.gz
tar zxvf v2_1_4.tar.gz
(
set -euo pipefail
mv -f nkf-2_1_4 nkf-2.1.4
cd nkf-2.1.4
make prefix=.
)
Expand Down