Skip to content

Commit

Permalink
fix: Krakatau URL
Browse files Browse the repository at this point in the history
  • Loading branch information
zlataovce committed Sep 7, 2024
1 parent bbbc0d3 commit 4b80667
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ function generateUUID() {
}

const krakScript = `from pyodide.http import pyfetch
response = await pyfetch("./krak.zip")
response = await pyfetch("https://cdn.jsdelivr.net/gh/run-slicer/script-krak@${__SCRIPT_VERSION__}/dist/krak.zip")
await response.unpack_archive()
from Krakatau.java.visitor import DefaultVisitor
Expand Down
2 changes: 1 addition & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface Worker {
}

const krakScript = `from pyodide.http import pyfetch
response = await pyfetch("./krak.zip")
response = await pyfetch("https://cdn.jsdelivr.net/gh/run-slicer/script-krak@${__SCRIPT_VERSION__}/dist/krak.zip")
await response.unpack_archive()
from Krakatau.java.visitor import DefaultVisitor
Expand Down

0 comments on commit 4b80667

Please sign in to comment.