Fix UI installPhase: use relative path from cwd after cd in buildPhase

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-26 15:04:17 -07:00
commit a269bd6526

View file

@ -47,7 +47,7 @@ let
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r deps/grafana-pyroscope/public/build/* $out/
cp -r public/build/* $out/
runHook postInstall
'';