mirror of https://github.com/ospab/ostp.git
fix(cli): missing l4_protocol field initialization
This commit is contained in:
parent
71ecf0da86
commit
aae9d22038
|
|
@ -1881,6 +1881,7 @@ async fn run_app() -> Result<()> {
|
|||
outbound = Some(ostp_server::OutboundConfig {
|
||||
enabled: true,
|
||||
protocol: "socks5".to_string(),
|
||||
l4_protocol: "all".to_string(),
|
||||
address: server,
|
||||
port,
|
||||
rules,
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@ Write-Output ""
|
|||
Write-Output "--- Phase 3: CI/CD release ---"
|
||||
|
||||
Write-Output "Pushing version metadata..."
|
||||
& git add Cargo.toml Cargo.lock
|
||||
& git add Cargo.toml Cargo.lock ostp-gui/src-tauri/tauri.conf.json ostp-flutter/pubspec.yaml
|
||||
& git commit -m "CI/CD: release version v$Version" --allow-empty | Out-Null
|
||||
& git push origin master | Out-Null
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue