Skip to content

Commit bdf635a

Browse files
Create gltf_exporter.bat
1 parent 6959634 commit bdf635a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

gltf_exporter.bat

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@echo off
2+
REM Check if git is installed
3+
git --version >nul 2>&1
4+
IF ERRORLEVEL 1 (
5+
echo Git is not installed. Please install Git to use this script.
6+
exit /b
7+
)
8+
9+
REM Clone the repository
10+
git clone https://github.com/CursedPrograms/gltf-Exporter.git
11+
12+
echo Download complete.
13+
pause

0 commit comments

Comments
 (0)