Fix mainInParentDirectory failing when initdb is not on PATH#2400
Merged
amitaibu merged 2 commits intofix-2397-mainInParentDirectory-initdbfrom Feb 12, 2026
Merged
Fix mainInParentDirectory failing when initdb is not on PATH#2400amitaibu merged 2 commits intofix-2397-mainInParentDirectory-initdbfrom
amitaibu merged 2 commits intofix-2397-mainInParentDirectory-initdbfrom
Conversation
The test was expecting IHPSchema.sql to be at a specific path in the test directory, but in the Nix build environment, getDataFileName resolves to the actual source directory. Changed the assertion to just check that IHPSchema.sql is loaded with -f flag, regardless of the absolute path. Co-authored-by: amitaibu <125707+amitaibu@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix mainInParentDirectory failing when initdb is not on PATH
Fix mainInParentDirectory failing when initdb is not on PATH
Feb 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When running
mainInParentDirectoryin wrapped dev server mode, Postgres initialization commands failed if they weren't available on the system PATH outside of the direnv environment.Changes
IHP.IDE.Postgresto wrapinitdb,postgres,createdb,psql, andpg_ctlcalls withdirenv exec .whenwrapWithDirenvis enabledpsql -finvocation for consistency with wrapped executionPaths_ihp_ide.getDataFileName: Enhanced path resolution in ghci/dev mode to checkIHP_LIBenvironment variable, enablingIHPSchema.sqldiscovery when running from parent directoryTest.IDE.PostgresSpecto verify wrapped command execution and IHPSchema loadingImplementation
The fix introduces a
procDirenvAwarehelper that conditionally wraps commands:Path resolution now checks
IHP_LIBbefore falling back to relative paths:✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.