This commit is contained in:
Stijnus
2025-01-24 01:08:51 +01:00
parent 4e6f18ea1e
commit 27eab591a9
19 changed files with 1759 additions and 592 deletions

View File

@@ -2,7 +2,7 @@ import { json } from '@remix-run/node';
import type { LoaderFunctionArgs } from '@remix-run/node';
import { execSync } from 'child_process';
export async function loader({ request }: LoaderFunctionArgs) {
export async function loader({ request: _request }: LoaderFunctionArgs) {
try {
const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
const commit = execSync('git rev-parse --short HEAD').toString().trim();