aboutsummaryrefslogtreecommitdiff
path: root/scripts/download-unicode-files.sh
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2022-06-27 12:30:27 -0700
committerJustin M. Keyes <justinkz@gmail.com>2022-06-28 04:05:11 -0700
commit4c0c6f8428681c7ceef1148abe40b7d06079449c (patch)
tree979a1e4742e7d6299594a3b81181eedae69ee158 /scripts/download-unicode-files.sh
parentf05a2891d3da9f9fcd9c7457ca0c2a54ff65078b (diff)
downloadrneovim-4c0c6f8428681c7ceef1148abe40b7d06079449c.tar.gz
rneovim-4c0c6f8428681c7ceef1148abe40b7d06079449c.tar.bz2
rneovim-4c0c6f8428681c7ceef1148abe40b7d06079449c.zip
build: move unicode/ to src/unicode/
Diffstat (limited to 'scripts/download-unicode-files.sh')
-rwxr-xr-xscripts/download-unicode-files.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/download-unicode-files.sh b/scripts/download-unicode-files.sh
index 12474d3c1e..4482cefa34 100755
--- a/scripts/download-unicode-files.sh
+++ b/scripts/download-unicode-files.sh
@@ -4,7 +4,7 @@ set -e
data_files="UnicodeData.txt CaseFolding.txt EastAsianWidth.txt"
emoji_files="emoji-data.txt"
-UNIDIR_DEFAULT=unicode
+UNIDIR_DEFAULT=src/unicode
DOWNLOAD_URL_BASE_DEFAULT='http://unicode.org/Public'
if test x$1 = 'x--help' ; then
@@ -39,5 +39,5 @@ done
(
cd "$UNIDIR"
- git commit -m "Update unicode files" -- $files
+ git commit -m "feat: update unicode tables" -- $files
)