Skip to content

Commit

Permalink
Debug file download
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonGrodin committed Sep 1, 2024
1 parent 87fd339 commit c1f4c9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ jobs:
- ubuntu-latest
- macos-12
- macos-13
- macos-14
smlnj-version:
- 2024.1
- 2024.2
Expand Down
1 change: 1 addition & 0 deletions lib/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ function acquireNJGitHub(version) {
return __awaiter(this, void 0, void 0, function* () {
yield exec.exec("git", ["clone", "--depth", "1", "--branch", "v" + version, "--recurse-submodules", "https://github.com/smlnj/smlnj.git"]);
let filename = util.format("boot.%s-unix.tgz", getArchitecture(version, true));
core.debug(`Downloading file: ${filename}`);
let downloadUrl = util.format("https://smlnj.org/dist/working/%s/%s", version, filename);
core.debug("Downloading SML/NJ from: " + downloadUrl);
try {
Expand Down
1 change: 1 addition & 0 deletions src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ async function acquireNJGitHub(version: string): Promise<string> {
await exec.exec("git", ["clone", "--depth", "1", "--branch", "v" + version, "--recurse-submodules", "https://github.com/smlnj/smlnj.git"]);

let filename: string = util.format("boot.%s-unix.tgz", getArchitecture(version, true))
core.debug(`Downloading file: ${filename}`)

let downloadUrl: string = util.format(
"https://smlnj.org/dist/working/%s/%s",
Expand Down

0 comments on commit c1f4c9e

Please sign in to comment.