Skip to content

Commit

Permalink
sample-app -> sample-apps
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed May 13, 2021
1 parent e9b5c4d commit 7a0e5bb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion default.nix
Expand Up @@ -22,7 +22,7 @@ in nixpkgs.stdenv.mkDerivation {
mkdir -p $out/share/bad-datalog
(
cd sample-app
cd sample-apps
elm make src/Main.elm --output $out/share/bad-datalog/index.html
)
'';
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions sample-app/src/Main.elm → sample-apps/src/Main.elm
Expand Up @@ -217,8 +217,8 @@ viewIndex =
[ Html.text "this yet-to-be-named datalog implementation in Elm" ]
, Html.text ". The source for these lives in the "
, Html.a
[ Attrs.href "https://git.bytes.zone/brian/bad-datalog/src/branch/main/sample-app" ]
[ Html.code [] [ Html.text "sample-app" ]
[ Attrs.href "https://git.bytes.zone/brian/bad-datalog/src/branch/main/sample-apps" ]
[ Html.code [] [ Html.text "sample-apps" ]
, Html.text " directory in the repo"
]
, Html.text "."
Expand Down
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

cd sample-app
cd sample-apps
elm-live --pushstate index.html src/Main.elm

0 comments on commit 7a0e5bb

Please sign in to comment.