Skip to content

Commit

Permalink
Repository moved to fsbolero/TodoMVC
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarmil committed Dec 13, 2018
1 parent 3aeb4c5 commit b0407b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bolero TodoMVC

This is an implementation of the [TodoMVC](http://todomvc.com/) sample application using [Bolero](https://github.com/intellifactory/bolero).
This is an implementation of the [TodoMVC](http://todomvc.com/) sample application using [Bolero](https://github.com/fsbolero/Bolero).

[See it running live here.](https://intellifactory.github.io/Bolero.TodoMVC/)
[See it running live here.](https://fsbolero.github.io/TodoMVC/)
2 changes: 1 addition & 1 deletion src/Bolero.TodoMVC.Client/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by <a href="http://twitter.com/tarmil_">Loïc Denuzière</a>; <a href="https://github.com/intellifactory/Bolero.TodoMVC">Check the sources for this project on GitHub</a></p>
<p>Created by <a href="http://twitter.com/tarmil_">Loïc Denuzière</a>; <a href="https://github.com/fsbolero/TodoMVC">Check the sources for this project on GitHub</a></p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script src="_framework/blazor.webassembly.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions tools/gh-pages.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
param ([string] $env = "local")

$msg = 'gh-pages.ps1: tests/client/wwwroot -> gh-pages'
$gitURL = "https://github.com/intellifactory/Bolero.TodoMVC"
$gitURL = "https://github.com/fsbolero/TodoMVC"

write-host -foregroundColor "green" "=====> $msg"

Expand Down Expand Up @@ -33,7 +33,7 @@ if ($env -eq "appveyor") {
git rm -rf *
cp -r -force ../../publish/Bolero.TodoMVC.Client/dist/* .
echo $null >> .nojekyll
(get-content '.\index.html' -encoding utf8).replace('<base href="/"', '<base href="/Bolero.TodoMVC/"') | set-content '.\index.html' -encoding utf8
(get-content '.\index.html' -encoding utf8).replace('<base href="/"', '<base href="/TodoMVC/"') | set-content '.\index.html' -encoding utf8
git add . 2>git.log
git commit --amend -am $msg
git push -f -u origin gh-pages
Expand Down

0 comments on commit b0407b9

Please sign in to comment.