diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-21 13:37:38 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-21 14:47:38 +0200 |
commit | c89c6a07925cfeb1287fff42a8964ae5253d3b83 (patch) | |
tree | 017c770324a0de35c50abec101b7481a9486609c /src | |
parent | build(flake): Add package definition (diff) | |
download | yt-c89c6a07925cfeb1287fff42a8964ae5253d3b83.tar.gz yt-c89c6a07925cfeb1287fff42a8964ae5253d3b83.zip |
fix(update): Use the `raw_update.py` from the path
Diffstat (limited to '')
-rw-r--r-- | src/update/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/update/mod.rs b/src/update/mod.rs index 9128bf7..23b17f9 100644 --- a/src/update/mod.rs +++ b/src/update/mod.rs @@ -53,7 +53,7 @@ pub async fn update( } } - let mut child = Command::new("./python_update/raw_update.py") + let mut child = Command::new("raw_update.py") .arg(max_backlog.to_string()) .args(&urls) .stdout(Stdio::piped()) |