diff options
author | EuAndreh <eu@euandre.org> | 2024-10-29 17:14:55 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-29 17:14:55 -0300 |
commit | cd021d3ea82c8cb5a35f27b17c30cd00d986c970 (patch) | |
tree | bfe0af50dde454c1832cf05136376f78b7d75b9f | |
parent | src/papod.go: Make private most exported names and start actually implementin... (diff) | |
download | papod-cd021d3ea82c8cb5a35f27b17c30cd00d986c970.tar.gz papod-cd021d3ea82c8cb5a35f27b17c30cd00d986c970.tar.xz |
mkdeps.sh: Fix typo on varlist name
-rw-r--r-- | deps.mk | 2 | ||||
-rwxr-xr-x | mkdeps.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ mains.go = \ tests/fuzz/api-check/main.go \ tests/main.go \ -functional-tests/libs.go = \ +functional-tests/lib.go = \ tests/functional/multiple-channels-and-users/papod.go \ functional-tests/main.go = \ @@ -16,7 +16,7 @@ mains() { libs | varlist 'libs.go' mains | varlist 'mains.go' -find tests/functional/*/*.go -not -name main.go | varlist 'functional-tests/libs.go' +find tests/functional/*/*.go -not -name main.go | varlist 'functional-tests/lib.go' find tests/functional/*/main.go | varlist 'functional-tests/main.go' find tests/fuzz/*/*.go -not -name main.go | varlist 'fuzz-targets/lib.go' find tests/fuzz/*/main.go | varlist 'fuzz-targets/main.go' |