From 5d0fff31f0ad97f5b0d20b14379ff52d52f28903 Mon Sep 17 00:00:00 2001 From: Mathew Chan Date: Fri, 7 Jun 2024 14:25:47 +0900 Subject: [PATCH] update bundle instruction to avoid confusion --- README.md | 2 +- build.sh | 1 - bundle.sh | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 build.sh create mode 100644 bundle.sh diff --git a/README.md b/README.md index 8e5fe25..f87311a 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ echo {} > .next/server/next-font-manifest.json ### Distribute for Anki ```bash -sh build.sh +sh bundle.sh ``` ### Acknowledgements - JMDict diff --git a/build.sh b/build.sh deleted file mode 100644 index 93dab59..0000000 --- a/build.sh +++ /dev/null @@ -1 +0,0 @@ -zip -r build.zip . -x ".*" -x "*.DS_Store" -x "__pycache__/*" -x "*.sh" -x mkdocs.yml -x develop.md -x README.md -x "**/__pycache__/*" -x client/\* -x docs/\* -x resources/\* \ No newline at end of file diff --git a/bundle.sh b/bundle.sh new file mode 100644 index 0000000..8504425 --- /dev/null +++ b/bundle.sh @@ -0,0 +1 @@ +zip -r bundle.zip . -x ".*" -x "*.DS_Store" -x "__pycache__/*" -x "*.sh" -x mkdocs.yml -x develop.md -x README.md -x "**/__pycache__/*" -x client/\* -x docs/\* -x resources/\* \ No newline at end of file