Skip to content

Commit a168dc0

Browse files
committed
Update hash-files.simba
1 parent e91e034 commit a168dc0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/hash-files.simba

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ var
77
json: TJSONParser;
88
begin
99
path := path.Before('tools' + PATH_SEP + '..' + PATH_SEP);
10+
WriteLn path;
11+
1012
files := DirList(path, True);
1113
skip := [path + 'LICENSE', path + 'README.md', path + 'hashes.json'];
1214

@@ -18,7 +20,7 @@ begin
1820
begin
1921
if PathIsDirectory(files[i]) then
2022
Continue;
21-
if files[i].StartsWith(PATH + '.git') then
23+
if files[i].StartsWith(path + '.git') then
2224
Continue;
2325
if files[i].EndsWith('.simba') then
2426
Continue;

0 commit comments

Comments
 (0)