Skip to content

Commit

Permalink
v0.73
Browse files Browse the repository at this point in the history
  • Loading branch information
matsumonkie committed Jan 26, 2021
1 parent c851d90 commit c92021b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ async function createTar(project, tarName) {
async function sendTarToIzuna(project, tarName) {
const ghcVersion = project.ghcVersion.replace(/\./g, "");
const baseUrl = 'https://izuna-builder.izuna.app';
const path = path.join("/api",
"projectInfo2",
ghcVersion,
project.user,
project.repo,
project.commitId,
project.projectRoot
);
const url = baseUrl + path;
const pathname = path__WEBPACK_IMPORTED_MODULE_0__.join("/api",
"projectInfo2",
ghcVersion,
project.user,
project.repo,
project.commitId,
project.projectRoot
);
const url = baseUrl + pathname;
console.log(`url: ${url}`);
const form = new FormData();
form.append(tarName, fs.createReadStream(tarName));
Expand Down
18 changes: 9 additions & 9 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ async function createTar(project, tarName) {
async function sendTarToIzuna(project, tarName) {
const ghcVersion = project.ghcVersion.replace(/\./g, "");
const baseUrl = 'https://izuna-builder.izuna.app';
const path = path.join("/api",
"projectInfo2",
ghcVersion,
project.user,
project.repo,
project.commitId,
project.projectRoot
);
const url = baseUrl + path;
const pathname = path.join("/api",
"projectInfo2",
ghcVersion,
project.user,
project.repo,
project.commitId,
project.projectRoot
);
const url = baseUrl + pathname;
console.log(`url: ${url}`);
const form = new FormData();
form.append(tarName, fs.createReadStream(tarName));
Expand Down
Binary file modified node_modules/@vercel/ncc/dist/ncc/cli.js.cache
Binary file not shown.
Binary file modified node_modules/@vercel/ncc/dist/ncc/index.js.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit c92021b

Please sign in to comment.