Skip to content

Commit

Permalink
Make sure we don't add <file> check if <under-version-control>
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Oct 10, 2022
1 parent cc7e7e4 commit 5f10bd8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/App/Rak.rakumod
Expand Up @@ -1886,7 +1886,8 @@ my sub move-filesystem-options-to-rak(--> Nil) {
%filesystem = ();
}

%rak<file> := codify-extensions @known-extensions unless %rak<file>:exists;
%rak<file> := codify-extensions @known-extensions
unless %rak<file under-version-control>:exists;
}

my sub move-result-options-to-rak(--> Nil) {
Expand Down

0 comments on commit 5f10bd8

Please sign in to comment.