Skip to content

Commit 976d022

Browse files
authored
Fix #275 (#276)
1 parent 8d2be79 commit 976d022

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -683,19 +683,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
683683
### Added
684684
- Initial release
685685

686-
[Unreleased]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.34.1...HEAD
687-
[0.34.1]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.34.0...v0.34.1
688-
[0.34.0]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.33.0...v0.34.0
689-
[0.33.0]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0
690-
[0.33.0-alpha009]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha009
691-
[0.33.0-alpha008]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha008
692-
[0.33.0-alpha007]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha007
693-
[0.33.0-alpha006]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha006
694-
[0.33.0-alpha005]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha005
695-
[0.33.0-alpha004]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha004
696-
[0.33.0-alpha003]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha003
697-
[0.33.0-alpha002]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha002
698-
[0.33.0-alpha001]: https://github.com/TheAngryByrd/MiniScaffold//compare/v0.32.0...v0.33.0-alpha001
686+
[Unreleased]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.34.1...HEAD
687+
[0.34.1]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.34.0...v0.34.1
688+
[0.34.0]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.33.0...v0.34.0
689+
[0.33.0]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0
690+
[0.33.0-alpha009]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha009
691+
[0.33.0-alpha008]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha008
692+
[0.33.0-alpha007]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha007
693+
[0.33.0-alpha006]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha006
694+
[0.33.0-alpha005]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha005
695+
[0.33.0-alpha004]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha004
696+
[0.33.0-alpha003]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha003
697+
[0.33.0-alpha002]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha002
698+
[0.33.0-alpha001]: https://github.com/TheAngryByrd/MiniScaffold/compare/v0.32.0...v0.33.0-alpha001
699699
[0.32.0]: https://github.com/TheAngryByrd/MiniScaffold/compare/0.31.1...0.32.0
700700
[0.32.0-beta001]: https://github.com/TheAngryByrd/MiniScaffold/compare/0.31.1...0.32.0-beta001
701701
[0.31.1]: https://github.com/TheAngryByrd/MiniScaffold/compare/0.31.0...0.31.1

Content/Library/build/build.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ let watchDocsDir =
104104
let gitOwner = "MyGithubUsername"
105105
let gitRepoName = "MyLib.1"
106106

107-
let gitHubRepoUrl = sprintf "https://github.com/%s/%s/" gitOwner gitRepoName
107+
let gitHubRepoUrl = sprintf "https://github.com/%s/%s" gitOwner gitRepoName
108108

109-
let documentationUrl = sprintf "https://%s.github.io/%s/" gitOwner gitRepoName
109+
let documentationRootUrl = sprintf "https://%s.github.io/%s/" gitOwner gitRepoName
110110

111111
let releaseBranch = "MyReleaseBranch"
112112
let readme = "README.md"
@@ -244,7 +244,7 @@ module DocsTool =
244244
Parameters =
245245
Some [
246246
// https://fsprojects.github.io/FSharp.Formatting/content.html#Templates-and-Substitutions
247-
"root", quoted documentationUrl
247+
"root", quoted documentationRootUrl
248248
"fsdocs-collection-name", quoted productName
249249
"fsdocs-repository-branch", quoted releaseBranch
250250
"fsdocs-package-version", quoted latestEntry.NuGetVersion

build/build.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ let watchDocsDir =
8888
let gitOwner = "TheAngryByrd"
8989
let gitRepoName = "MiniScaffold"
9090

91-
let gitHubRepoUrl = sprintf "https://github.com/%s/%s/" gitOwner gitRepoName
91+
let gitHubRepoUrl = sprintf "https://github.com/%s/%s" gitOwner gitRepoName
9292

93-
let documentationUrl = "https://www.jimmybyrd.me/MiniScaffold/"
93+
let documentationRootUrl = "https://www.jimmybyrd.me/MiniScaffold/"
9494

9595
let releaseBranch = "master"
9696
let readme = "README.md"
@@ -211,7 +211,7 @@ module DocsTool =
211211
Parameters =
212212
Some [
213213
// https://fsprojects.github.io/FSharp.Formatting/content.html#Templates-and-Substitutions
214-
"root", quoted documentationUrl
214+
"root", quoted documentationRootUrl
215215
"fsdocs-collection-name", quoted productName
216216
"fsdocs-repository-branch", quoted releaseBranch
217217
"fsdocs-repository-link", quoted (gitHubRepoUrl)

0 commit comments

Comments
 (0)