1
0
mirror of synced 2025-01-23 23:04:07 +01:00

Wow I'm stupid

This commit is contained in:
Luna Nightshade 2023-06-21 22:10:22 +02:00
parent c84bc308b6
commit 8668b2e8fc
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@
in rec { in rec {
packages.bayshore = pkgs.buildNpmPackage { packages.bayshore = pkgs.buildNpmPackage {
pname = "bayshore"; pname = "bayshore";
version = "1.0.4"; version = "1.0.5";
src = ./.; src = ./.;
npmDepsHash = "sha256-7iVoTJv5rvdiUWyhrDOGEboOo1sdQ7YvZOqbgvz/mF8="; npmDepsHash = "sha256-7iVoTJv5rvdiUWyhrDOGEboOo1sdQ7YvZOqbgvz/mF8=";

View File

@ -29,6 +29,7 @@ import { Config } from './config';
import * as Sentry from '@sentry/node'; import * as Sentry from '@sentry/node';
import * as Tracing from '@sentry/tracing'; import * as Tracing from '@sentry/tracing';
import * as common from './modules/util/common'; import * as common from './modules/util/common';
import path from 'path';
globalAgent.options.keepAlive = true; globalAgent.options.keepAlive = true;
@ -112,7 +113,7 @@ allnetApp.use((req, res, next) => {
}); });
// Get all of the files in the modules directory // Get all of the files in the modules directory
let dirs = fs.readdirSync('dist/modules'); let dirs = fs.readdirSync(path.join(path.dirname(__filename), 'modules'));
// Loop over the files // Loop over the files
for (let i of dirs) for (let i of dirs)
{ {