mirror of
https://github.com/sern-handler/website
synced 2026-06-06 01:16:47 +00:00
fix:change setup.mjs back into a setup.ts since that wasnt the issue
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
import { $ } from "bun";
|
||||
import { GITHUB_URL } from "~/utils/consts.ts";
|
||||
import { GITHUB_URL } from "~/utils/consts";
|
||||
import { existsSync } from "node:fs";
|
||||
import { copyFile } from "node:fs/promises";
|
||||
|
||||
const gits = [
|
||||
interface GitItem {
|
||||
name: string;
|
||||
repo: string;
|
||||
branch?: string;
|
||||
folder?: string;
|
||||
install?: boolean;
|
||||
}
|
||||
|
||||
const gits: GitItem[] = [
|
||||
{
|
||||
name: "sern-handler-v3",
|
||||
repo: "handler",
|
||||
Reference in New Issue
Block a user