File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed
Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 152152 set RESULT = 1
153153 exit /b 1
154154 )
155-
155+
156+ rmdir /S /Q " %UNITY_ROOT_DIR% \.github"
157+ if exist " %UNITY_ROOT_DIR% \.github" (
158+ echo .git ディレクトリの削除に失敗しました。
159+ set RESULT = 1
160+ exit /b 1
161+ )
162+ del " %UNITY_ROOT_DIR% \.gitattributes"
163+ if exist " %UNITY_ROOT_DIR% \.gitattributes" (
164+ echo tools ディレクトリの削除に失敗しました。
165+ set RESULT = 1
166+ exit /b 1
167+ )
168+ del " %UNITY_ROOT_DIR% \.gitignore"
169+ if exist " %UNITY_ROOT_DIR% \.gitignore" (
170+ echo tools ディレクトリの削除に失敗しました。
171+ set RESULT = 1
172+ exit /b 1
173+ )
174+ del " %UNITY_ROOT_DIR% \.gitmodules"
175+ if exist " %UNITY_ROOT_DIR% \.gitmodules" (
176+ echo tools ディレクトリの削除に失敗しました。
177+ set RESULT = 1
178+ exit /b 1
179+ )
156180 rmdir /S /Q " %UNITY_ROOT_DIR% \tools"
157181 if exist " %UNITY_ROOT_DIR% \tools" (
158182 echo tools ディレクトリの削除に失敗しました。
You can’t perform that action at this time.
0 commit comments