Skip to content

Commit

Permalink
fix: wrong version prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNoim committed Jan 24, 2023
1 parent 0632ec3 commit 2f44ac5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reactive_home/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mkdir -p /config/reactive-home
if [[ ! -f /config/reactive-home/import_map.json ]]; then
echo "{
\"imports\": {
\"reactive-home\": \"https://deno.land/x/reactivehome@v0.2.12/mod.ts\"
\"reactive-home\": \"https://deno.land/x/reactivehome@0.2.12/mod.ts\"
}
}" >> /config/reactive-home/import_map.json
fi
Expand Down
2 changes: 1 addition & 1 deletion reactive_home/update-import-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if (version) {

importMapJson.imports[
"reactive-home"
] = `https://deno.land/x/reactivehome@v${version}/mod.ts`;
] = `https://deno.land/x/reactivehome@${version}/mod.ts`;

await Deno.writeTextFile(
"/config/reactive-home/import_map.json",
Expand Down

0 comments on commit 2f44ac5

Please sign in to comment.