Skip to content

Commit 71ceedc

Browse files
authored
Merge pull request #26 from gngpp/dev
Bump version to 3.5.2-4
2 parents 01500f7 + 8d243f1 commit 71ceedc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xunlei"
3-
version = "3.5.2-3"
3+
version = "3.5.2-4"
44
edition = "2021"
55
description = "Synology Nas Thunder runs on Linux"
66
license = "MIT"

openwrt/xunlei/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
22

33
PKG_NAME:=xunlei
44

5-
PKG_VERSION:=3.5.2-3
5+
PKG_VERSION:=3.5.2-4
66

77
PKG_LICENSE:=MIT
88
PKG_MAINTAINER:=gngpp <[email protected]>

src/libc_asset.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub(crate) fn ld_env(envs: &mut std::collections::HashMap<String, String>) -> an
2929
{
3030
let target_file = libc_path.join(&filename);
3131
if !target_file.exists() {
32-
let file = Asset::get(filename).context("Failed to get bin asset")?;
32+
let file = Asset::get(&filename).context("Failed to get bin asset")?;
3333
standard::write_file(&target_file, file.data, 0o755)?;
3434
}
3535
}

0 commit comments

Comments
 (0)