From 1f67408e9eb23e33137c9d290d769688772a1451 Mon Sep 17 00:00:00 2001 From: Yusuke Yamada Date: Tue, 5 Mar 2024 18:12:04 +0900 Subject: [PATCH] =?UTF-8?q?local=E3=81=AE=E3=83=95=E3=82=A1=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=82=92=E3=82=82=E3=81=86=E3=81=A1=E3=82=87=E3=81=84?= =?UTF-8?q?=E3=81=84=E3=81=84=E6=84=9F=E3=81=98=E3=81=AB=E2=80=A6=20(#86)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * testとかで使うcoreファイルを配置する場所を固定してignore * 色んなところに配置したvoicevox_core邪魔なのでcleanで消す --- .gitignore | 4 ++++ .local/.gitkeep | 0 Makefile | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 .local/.gitkeep diff --git a/.gitignore b/.gitignore index 8a3b2ea..2be1753 100644 --- a/.gitignore +++ b/.gitignore @@ -483,3 +483,7 @@ $RECYCLE.BIN/ !examples/UnitySample/**/*.meta !src/VoicevoxCoreSharp.Core.Unity/**/*.meta + +# releaseから落としてきたテスト用のファイル +/.local/* +!/.local/.gitkeep diff --git a/.local/.gitkeep b/.local/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile index 9824ac1..0b1f687 100644 --- a/Makefile +++ b/Makefile @@ -14,3 +14,6 @@ submodule/checkout: @if [[ "$(COMMIT)" -eq "" ]]; then echo Needs "COMMIT args" ; exit 1 ; fi $(MAKE) submodule/update git submodule foreach git checkout $(COMMIT) + +clean: + git clean -xde .local