Merge pull request 'chore: add a check for background.jpg' (#4380) from chore/stupid-jpg-check into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4380
This commit is contained in:
brianmcgee
2025-07-16 16:15:38 +00:00

View File

@@ -21,6 +21,12 @@ buildNpmPackage (_finalAttrs: {
mkdir -p api mkdir -p api
cp -r ${clan-ts-api}/* api cp -r ${clan-ts-api}/* api
cp -r ${fonts} ".fonts" cp -r ${fonts} ".fonts"
# only needed for the next couple weeks to make sure this file doesn't make it back into the git history
if [[ -f "${./ui}/src/routes/Onboarding/background.jpg" ]]; then
echo "background.jpg found, exiting"
exit 1
fi
''; '';
# todo figure out why this fails only inside of Nix # todo figure out why this fails only inside of Nix