-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
428194d
commit f63a451
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@echo off | ||
echo Cloning the ARToolkit-Unity-Template repository... | ||
|
||
rem Clone the repository | ||
git clone https://github.com/CursedPrograms/ARToolkit-Unity-Template.git temp_repo | ||
|
||
echo Moving contents of Unity directory to current folder... | ||
rem Move the contents of the Unity directory to the current folder | ||
xcopy "temp_repo/src/Unity\*" "." /E /I /Y | ||
|
||
echo Cleaning up temporary files... | ||
rem Remove the cloned repository | ||
rmdir /S /Q temp_repo | ||
|
||
echo Download complete. The contents of the Unity directory are now in the current folder. | ||
pause |