1
0
Fork 0
mirror of https://codeberg.org/demostf/api.git synced 2026-06-03 09:54:17 +02:00

update parser

This commit is contained in:
Robin Appelman 2024-03-29 16:51:13 +01:00
commit 5e3e9d5ab7
3 changed files with 1633 additions and 4 deletions

1624
parser-Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -13,9 +13,14 @@ in
src = fetchFromGitHub {
owner = "demostf";
repo = "parser";
rev = "v0.4.0";
hash = "sha256-/1D5bNnJWRwuycaLidSyuYC36IHSnyA33HvcoUH4GpI=";
rev = "v0.5.1";
hash = "sha256-H6ypYeZRxaMP/qRZoO2bp7OzmePMNUaBbcswsa0b9Hs=";
};
cargoSha256 = "sha256-UNslB5yKcVbuRELxbKQ1Bl2jHKoC3i0OEYq0UzTi1aU=";
cargoLock = {
lockFile = ./parser-Cargo.lock;
outputHashes = {
"schemars-0.8.16" = "sha256-mQR56Ym76gSRulZrThmZHHw2JfhEgYhWXabwaYmyMYs=";
};
};
}

View file

@ -16,7 +16,7 @@ $autoloader = require __DIR__ . '/../vendor/autoload.php';
function getEnvVar(string $name): string {
$var = getenv($name) ?: '';
if (str_contains($var, '$CREDENTIALS_DIRECTORY')) {
$credentialsDirectory = getenv('CREDENTIALS_DIRECTORY') ?? '';
$credentialsDirectory = getenv('CREDENTIALS_DIRECTORY') ?: '';
$path = str_replace('$CREDENTIALS_DIRECTORY', $credentialsDirectory, $var);
$var = file_get_contents($path);
}