diff options
author | msglm <msglm@techchud.xyz> | 2025-08-17 19:54:24 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-08-17 19:54:24 -0500 |
commit | 214bc0b151e21b23008a58fbd3046d6fbcc96e34 (patch) | |
tree | 7d1ae1c9d59488c8682ff2fd85d8cace45b00832 | |
parent | 1553e5c0ce81ad4cb0b177a87071ad98938d5f22 (diff) | |
download | indeed-watcher-214bc0b151e21b23008a58fbd3046d6fbcc96e34.tar.gz indeed-watcher-214bc0b151e21b23008a58fbd3046d6fbcc96e34.tar.bz2 indeed-watcher-214bc0b151e21b23008a58fbd3046d6fbcc96e34.zip |
ensure that indeed watcher outputs company name when outputting file
-rw-r--r-- | src/indeedwatcher.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indeedwatcher.nim b/src/indeedwatcher.nim index a8d6bfc..a0a8686 100644 --- a/src/indeedwatcher.nim +++ b/src/indeedwatcher.nim @@ -174,7 +174,7 @@ for feed in feeds: Description: $6 """ % [posting.jobName, posting.employer, posting.location, salaryInfoAndJobType, posting.URL, fullDesc] - writeFile(outdir & posting.jobName.replace("/") & ".txt", output) + writeFile(outdir & posting.employer & " - " & posting.jobName.replace("/") & ".txt", output) echo "Wrote job to file!" cache.writeLine(posting.URL) echo "Wrote listing to cache!" |