We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77093ee commit 1bc9046Copy full SHA for 1bc9046
2 files changed
.github/workflows/CI.yml
@@ -51,7 +51,7 @@ jobs:
51
zig build
52
find zig-out
53
- name: zigfetch compare
54
- if: matrix.os == 'macos-latest'
+ if: matrix.os != 'windows-latest'
55
run: |
56
bash .github/zigfetch.sh
57
.github/zigfetch.sh
@@ -7,7 +7,7 @@ check_hash() {
7
local expected="$2"
8
9
# zig fetch --debug-hash "${pkg}"
10
- # "${script_dir}/../zig-out/bin/zigfetch" "${pkg}"
+ "${script_dir}/../zig-out/bin/zigfetch" "${pkg}"
11
local actual=$("${script_dir}/../zig-out/bin/zigfetch" "${pkg}" 2>&1 | tail -1)
12
13
if [ "${actual}" != "${expected}" ]; then
0 commit comments