We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e91e034 commit a168dc0Copy full SHA for a168dc0
tools/hash-files.simba
@@ -7,6 +7,8 @@ var
7
json: TJSONParser;
8
begin
9
path := path.Before('tools' + PATH_SEP + '..' + PATH_SEP);
10
+ WriteLn path;
11
+
12
files := DirList(path, True);
13
skip := [path + 'LICENSE', path + 'README.md', path + 'hashes.json'];
14
@@ -18,7 +20,7 @@ begin
18
20
19
21
if PathIsDirectory(files[i]) then
22
Continue;
- if files[i].StartsWith(PATH + '.git') then
23
+ if files[i].StartsWith(path + '.git') then
24
25
if files[i].EndsWith('.simba') then
26
0 commit comments