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 {
|
outbound = Some(ostp_server::OutboundConfig {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
protocol: "socks5".to_string(),
|
protocol: "socks5".to_string(),
|
||||||
|
l4_protocol: "all".to_string(),
|
||||||
address: server,
|
address: server,
|
||||||
port,
|
port,
|
||||||
rules,
|
rules,
|
||||||
|
|
|
||||||
|
|
@ -252,7 +252,7 @@ Write-Output ""
|
||||||
Write-Output "--- Phase 3: CI/CD release ---"
|
Write-Output "--- Phase 3: CI/CD release ---"
|
||||||
|
|
||||||
Write-Output "Pushing version metadata..."
|
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 commit -m "CI/CD: release version v$Version" --allow-empty | Out-Null
|
||||||
& git push origin master | Out-Null
|
& git push origin master | Out-Null
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue