Skip to content
Snippets Groups Projects
Commit 41775e08 authored by Jan Frieder Milke's avatar Jan Frieder Milke
Browse files

Merge branch 'feature/remove_setup' into '5.2'

removed setup script and submodule

See merge request vr-vis/VR-Group/unreal-development/unrealprojecttemplate!65
parents b76eaa47 e67ed6cd
No related branches found
No related tags found
No related merge requests found
[submodule "setup"]
path = setup
url = https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/tools/unreal-project-setup-script.git
branch = master
Subproject commit 21724e17473e568b1694449b9c3013498801eec2
git submodule update --init -- setup
FOR /F "tokens=*" %%a in ('git config -f .gitmodules --get submodule.setup.branch') do SET BRANCH=%%a
WHERE py
IF %ERRORLEVEL% NEQ 0 (SET PYTHON_COMMAND=python) ELSE (FOR /f "delims=" %%i in ('py -3 -c "import sys; print(sys.executable)"') do SET PYTHON_COMMAND=%%i)
ECHO %PYTHON_COMMAND%
cd setup && git checkout %BRANCH% && git pull && cd .. && "%PYTHON_COMMAND%" .\setup\setup.py %*
#!/bin/bash
git submodule update --init -- setup
branch=$(git config -f .gitmodules --get submodule.setup.branch)
cd setup && git checkout $branch && git pull && cd .. && /usr/bin/env python3 ./setup/setup.py $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment