diff options
| author | Sam Nystrom <sam@samnystrom.dev> | 2023-06-23 16:58:14 -0400 |
|---|---|---|
| committer | Sam Nystrom <sam@samnystrom.dev> | 2023-06-23 17:44:31 -0400 |
| commit | 8efeed7a3ed024a96625864135b038294bbcc82a (patch) | |
| tree | 62735e38e185501bfea632f08e51e2cc0019fc90 | |
| parent | 8e597ac7ad8829c48b9beeb969fe3f2130ecbf0c (diff) | |
clone submodules in installation instructions
The release tarball doesn't include submodules.
| -rw-r--r-- | README.md | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -10,16 +10,19 @@ and optionally [haredo](https://sr.ht/~autumnull/haredo). ### With haredo ```sh -curl 'https://git.sr.ht/~stonks3141/srtplay/archive/0.1.1.tar.gz' | tar -xz -cd srtplay-0.1.1 +git clone https://git.sr.ht/~stonks3141/srtplay +cd srtplay +git submodule update --init + PREFIX=/usr/local haredo install ``` ### Without haredo ```sh -curl 'https://git.sr.ht/~stonks3141/srtplay/archive/0.1.1.tar.gz' | tar -xz -cd srtplay-0.1.1 +git clone https://git.sr.ht/~stonks3141/srtplay +cd srtplay +git submodule update --init hare build . scdoc < srtplay.1.scd > srtplay.1 |
