Skip to content

Commit

Permalink
Remove redundant debug
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonGrodin committed Sep 1, 2024
1 parent c1f4c9e commit 6c988a6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ 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: 0 additions & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ 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 6c988a6

Please sign in to comment.