Skip to content

Commit 1dcc290

Browse files
committed
tests/checks/check-all-fish-files.fish: follow naming convention
1 parent 863204d commit 1dcc290

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/checks/check-all-fish-files.fish

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# disable on CI ASAN because it's suuuper slow
33
#REQUIRES: test -z "$FISH_CI_SAN"
44

5-
set -l root (path resolve -- (status dirname)/../../)
6-
set timestamp_file $root/tests/.last-check-all-files
5+
set -l workspace_root (path resolve -- (status dirname)/../../)
6+
set timestamp_file $workspace_root/tests/.last-check-all-files
77
set -l find_args
88
if test -f $timestamp_file
99
set find_args -newer $timestamp_file
1010
end
1111
set -l fail_count 0
12-
for file in (find $root/{benchmarks,build_tools,etc,share,tests} -name "*.fish" $find_args)
12+
for file in (find $workspace_root/{benchmarks,build_tools,etc,share,tests} -name "*.fish" $find_args)
1313
$fish -n $file; or set fail_count (math $fail_count + 1)
1414
end
1515

0 commit comments

Comments
 (0)