Skip to content

Commit 478d9fa

Browse files
jjtoltonclaude
andcommitted
Add working_directory/2 to library(files) imports
The find_project_root/1 predicate uses working_directory/2, which is exported from library(files), not library(os). This fixes the CI failure that occurred after PR bakaq#45 changed imports to be explicit. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 54cedde commit 478d9fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bakage.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
:- use_module(library(os), [argv/1, setenv/2, shell/1, unsetenv/1, getenv/2]).
2828
:- use_module(library(files), [
2929
directory_exists/1, make_directory_path/1, directory_files/2, file_exists/1,
30-
delete_file/1, delete_directory/1
30+
delete_file/1, delete_directory/1, working_directory/2
3131
]).
3232
:- use_module(library(dcgs), [phrase/2, phrase/3, ... //0]). % 13211-3
3333
:- use_module(library(charsio), [write_term_to_chars/3]).

0 commit comments

Comments
 (0)