Skip to content
This repository was archived by the owner on Apr 25, 2022. It is now read-only.

Commit 4518dfa

Browse files
committed
Improve beta install instructions
1 parent 2815f5f commit 4518dfa

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/components/application/CmdInstructions.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,16 @@ const CmdInstructions = ({ appId, isStable }: { appId: string, isStable: boolean
1212
</a>{' '}
1313
before installing
1414
</p>
15-
{isStable ? (<CodeCopy text={`flatpak install flathub ${appId}`}></CodeCopy>) : (<CodeCopy text={`flatpak install flathub-beta ${appId}`}></CodeCopy>)}
15+
16+
{isStable ? (<CodeCopy text={`flatpak install flathub ${appId}`}></CodeCopy>) : (<>
17+
<p>This is a beta version, so you will need to have the flathub-beta repo setup</p>
18+
<CodeCopy text={`flatpak remote-add --if-not-exists flathub-beta https://flathub.org/beta-repo/flathub-beta.flatpakrepo`}></CodeCopy>
19+
<p>
20+
Then install the app with:
21+
</p>
22+
<CodeCopy text={`flatpak install flathub-beta ${appId}`}></CodeCopy>
23+
</>
24+
)}
1625
<h3>Run</h3>
1726
<CodeCopy text={`flatpak run ${appId}`}></CodeCopy>
1827
</div>

0 commit comments

Comments
 (0)