-
Notifications
You must be signed in to change notification settings - Fork 5
begin adding lneto #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
fd38051
3c5a84d
54fbc16
deedbc4
8dd8b26
9b000ed
3b1390c
b36d95b
7900fcc
db0f253
846407a
79f16d3
bc01e7c
33c26a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| wireguard-go | ||
| *LNETO_EQUIVALENCE.md | ||
| *_local.* | ||
| local |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,9 @@ | ||
| module golang.zx2c4.com/wireguard | ||
|
|
||
| go 1.23.1 | ||
| go 1.24 | ||
|
|
||
| require ( | ||
| github.com/soypat/lneto v0.0.0-00010101000000-000000000000 | ||
| golang.org/x/crypto v0.37.0 | ||
| golang.org/x/net v0.39.0 | ||
| golang.org/x/sys v0.32.0 | ||
|
|
@@ -14,3 +15,5 @@ require ( | |
| github.com/google/btree v1.1.2 // indirect | ||
| golang.org/x/time v0.7.0 // indirect | ||
| ) | ||
|
|
||
| replace github.com/soypat/lneto => ../lneto | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Checking go.mod replace directive:"
rg -n '^\s*replace\s+github\.com/soypat/lneto' go.mod
echo
echo "Checking whether target path exists from repo root:"
python - <<'PY'
from pathlib import Path
p = Path("../lneto")
print(f"path: {p}")
print(f"resolved: {p.resolve()}")
print(f"exists: {p.exists()}")
PYRepository: netbirdio/wireguard-go Length of output: 261 Local Line 19 references 🤖 Prompt for AI AgentsSource: Linters/SAST tools |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing push of go.sum
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, I'm still waiting on fixes to lneto before fixing a version. we currently use replace directive for it to work