Fix project.godot error

This commit is contained in:
JeremyStar™ 2024-02-11 13:20:42 +01:00
parent 753f811763
commit 1067a5dcaa

View file

@ -31,6 +31,7 @@ You'll need to execute all commands in your project root.
<TabItem value="direct-develop" label="Develop branch"> <TabItem value="direct-develop" label="Develop branch">
```bash ```bash
git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE
rm -rf CORE/project.godot
``` ```
</TabItem> </TabItem>
<TabItem value="direct-stable" label="Stable branch" default> <TabItem value="direct-stable" label="Stable branch" default>
@ -38,11 +39,13 @@ git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE
git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE git clone https://git.staropensource.de/StarOpenSource/CORE.git CORE
cd CORE cd CORE
git checkout stable git checkout stable
rm -rf project.godot
``` ```
</TabItem> </TabItem>
<TabItem value="submodule-develop" label="Develop branch (submodule)"> <TabItem value="submodule-develop" label="Develop branch (submodule)">
```bash ```bash
git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE
rm -rf CORE/project.godot
``` ```
</TabItem> </TabItem>
<TabItem value="submodule-stable" label="Stable branch (submodule)"> <TabItem value="submodule-stable" label="Stable branch (submodule)">
@ -50,6 +53,7 @@ git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE
git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE git submodule add https://git.staropensource.de/StarOpenSource/CORE.git CORE
cd CORE cd CORE
git checkout stable git checkout stable
rm -rf project.godot
``` ```
</TabItem> </TabItem>
</Tabs> </Tabs>
@ -121,4 +125,4 @@ cd ..
git submodule update git submodule update
``` ```
</TabItem> </TabItem>
</Tabs> </Tabs>