Skip to content

Commit cea96d8

Browse files
committed
fix: update solana docs url
1 parent 49c4050 commit cea96d8

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.changeset/tricky-apes-beg.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'create-solana-dapp': patch
3+
---
4+
5+
update solana docs url

src/utils/get-version-urls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const urls: Record<VersionCommand, VersionUrls> = {
1515
update: 'https://www.anchor-lang.com/release-notes/{required}',
1616
},
1717
solana: {
18-
install: 'https://docs.solana.com/cli/install-solana-cli-tools',
18+
install: 'https://solana.com/docs/intro/installation',
1919
},
2020
}
2121

test/get-version-urls.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ describe('getVersionUrls', () => {
2525
it('should return install url for "solana"', () => {
2626
const urls = getVersionUrls('solana' as VersionCommand, '')
2727
expect(urls).toEqual({
28-
install: 'https://docs.solana.com/cli/install-solana-cli-tools',
29-
update: 'https://docs.solana.com/cli/install-solana-cli-tools',
28+
install: 'https://solana.com/docs/intro/installation',
29+
update: 'https://solana.com/docs/intro/installation',
3030
})
3131
})
3232

0 commit comments

Comments
 (0)