smal fixes

This commit is contained in:
2025-04-22 13:43:28 +02:00
parent 3d994026ee
commit c315159055
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ install: build
install -D -m 0755 --target-directory="${HOME}/.config" Hentai.conf install -D -m 0755 --target-directory="${HOME}/.config" Hentai.conf
build: build:
gcc --std gnu23 -o has_internet has_internet.c gcc -std=gnu23 -o has_internet has_internet.c
strip has_internet strip has_internet
cargo build --release cargo build --release
strip target/release/Hentai strip target/release/Hentai

View File

@ -126,7 +126,7 @@ fn generate_file(
let url: String = row.get(0); let url: String = row.get(0);
let folder_path: String = row.get(1); let folder_path: String = row.get(1);
writeln!(file, "{} # {}", url, folder_path)?; writeln!(file, "{} # data/{}", url, folder_path)?;
} }
Ok(()) Ok(())