Skip to content

Commit f19274f

Browse files
committed
actually still using submodules a bit
1 parent 8d5d808 commit f19274f

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ updates:
44
directory: "/"
55
schedule:
66
interval: "weekly"
7+
- package-ecosystem: "gitsubmodule"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"

.github/workflows/build-auto.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v4
13+
with:
14+
submodules: recursive
1315
- name: Install Node.js
1416
uses: actions/setup-node@v4
1517
with:

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16+
with:
17+
submodules: recursive
1618
- name: Install Node.js
1719
uses: actions/setup-node@v4
1820
with:

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v4
21+
with:
22+
submodules: recursive
2123
- name: Install Node.js
2224
uses: actions/setup-node@v4
2325
with:

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,17 @@ The website source code is in the `docs` folder.
1414

1515
## Development
1616

17-
Clone using:
17+
We use submodules, so clone using:
1818

1919
```bash
20-
git clone https://github.com/TurboWarp/desktop turbowarp-desktop
20+
git clone --recursive https://github.com/TurboWarp/desktop turbowarp-desktop
21+
```
22+
23+
or run this after cloning:
24+
25+
```bash
26+
git submodule init
27+
git submodule update
2128
```
2229

2330
Install dependencies using:

0 commit comments

Comments
 (0)