Skip to content

Commit 24253a9

Browse files
Update URLs
1 parent 4620f1b commit 24253a9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ today! Here are the guidelines we'd like you to follow:
1313
## <a name="issue"></a> Found an Issue?
1414

1515
If you find a bug in the source code or a mistake in the documentation, you can help us by
16-
submitting an issue to our [GitHub Repository](https://github.com/LambdaFactory/Fornax). Even better you can submit a Pull Request
16+
submitting an issue to our [GitHub Repository](https://github.com/Ionide/Fornax). Even better you can submit a Pull Request
1717
with a fix.
1818

1919

2020
## <a name="feature"></a> Want a Feature?
2121

22-
You can request a new feature by submitting an issue to our [GitHub Repository](https://github.com/LambdaFactory/Fornax). If you would like to implement a new feature then consider what kind of change it is:
22+
You can request a new feature by submitting an issue to our [GitHub Repository](https://github.com/Ionide/Fornax). If you would like to implement a new feature then consider what kind of change it is:
2323

2424
* **Major Changes** that you wish to contribute to the project should be discussed first on in the issue so that we can better coordinate our efforts, prevent duplication of work, and help you to craft the change so that it is successfully accepted into the project.
2525

26-
* **Small Changes** can be crafted and submitted to the [GitHub Repository](https://github.com/LambdaFactory/Fornax) as a Pull Request.
26+
* **Small Changes** can be crafted and submitted to the [GitHub Repository](https://github.com/Ionide/Fornax) as a Pull Request.
2727

2828
## <a name="docs"></a> Want a Doc Fix?
2929

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fornax
22

3-
![Logo](https://raw.githubusercontent.com/LambdaFactory/Fornax/master/logo/Fornax.png)
3+
![Logo](https://raw.githubusercontent.com/Ionide/Fornax/master/logo/Fornax.png)
44

55
Fornax is a **scriptable static site generator** using type safe F# DSL to define page layouts.
66

@@ -178,7 +178,7 @@ There might be a little voice inside that tells you you're not ready; that you n
178178

179179
I assure you, that's not the case.
180180

181-
This project has some clear Contribution Guidelines and expectations that you can [read here](https://github.com/LambdaFactory/Fornax/blob/master/CONTRIBUTING.md).
181+
This project has some clear Contribution Guidelines and expectations that you can [read here](https://github.com/Ionide/Fornax/blob/master/CONTRIBUTING.md).
182182

183183
The contribution guidelines outline the process that you'll need to follow to get a patch merged. By making expectations and process explicit, I hope it will make it easier for you to contribute.
184184

@@ -196,9 +196,9 @@ Thank you for contributing!
196196

197197
## Contributing and copyright
198198

199-
The project is hosted on [GitHub](https://github.com/LambdaFactory/Fornax) where you can [report issues](https://github.com/LambdaFactory/Fornax/issues), fork
200-
the project and submit pull requests. Please read [Contribution Guide](https://github.com/LambdaFactory/Fornax/blob/master/CONTRIBUTING.md)
199+
The project is hosted on [GitHub](https://github.com/Ionide/Fornax) where you can [report issues](https://github.com/Ionide/Fornax/issues), fork
200+
the project and submit pull requests. Please read [Contribution Guide](https://github.com/Ionide/Fornax/blob/master/CONTRIBUTING.md)
201201

202-
The library is available under [MIT license](https://github.com/LambdaFactory/Fornax/blob/master/LICENSE.md), which allows modification and redistribution for both commercial and non-commercial purposes.
202+
The library is available under [MIT license](https://github.com/Ionide/Fornax/blob/master/LICENSE.md), which allows modification and redistribution for both commercial and non-commercial purposes.
203203

204204
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ open Fake.Api
2424
let project = "Fornax"
2525
let summary = "Fornax is a static site generator using type safe F# DSL to define page layouts"
2626

27-
let gitOwner = "LambdaFactory"
27+
let gitOwner = "Ionide"
2828
let gitHome = "https://github.com/" + gitOwner
2929
let gitName = "Fornax"
3030
let gitRaw = Environment.environVarOrDefault "gitRaw" ("https://raw.github.com/" + gitOwner)
@@ -52,7 +52,7 @@ let runTool cmd args workingDir =
5252
|> CreateProcess.fromCommand
5353
|> CreateProcess.withWorkingDirectory workingDir
5454
|> Proc.run
55-
if r.ExitCode <> 0 then
55+
if r.ExitCode <> 0 then
5656
failwithf "Error while running '%s' with args: %s" cmd args
5757

5858
let getBuildParam = Environment.environVar
@@ -122,7 +122,7 @@ Target.create "Pack" (fun _ ->
122122
Environment.setEnvironVar "Description" summary
123123
Environment.setEnvironVar "PackageReleaseNotes" (release.Notes |> String.toLines)
124124
Environment.setEnvironVar "PackageTags" "f#, site-generator, html"
125-
Environment.setEnvironVar "PackageProjectUrl" "https://github.com/LambdaFactory/Fornax"
125+
Environment.setEnvironVar "PackageProjectUrl" "https://github.com/Ionide/Fornax"
126126
Environment.setEnvironVar "PackageLicenseExpression" "MIT"
127127

128128
DotNet.pack (fun p ->

0 commit comments

Comments
 (0)