scripts: cleanup
This commit is contained in:
parent
474b97e27a
commit
6a7a5ce04e
2 changed files with 10 additions and 20 deletions
10
home/programs/scripts/bdfr
Executable file
10
home/programs/scripts/bdfr
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env nu
|
||||
|
||||
def main [
|
||||
--subreddit: string
|
||||
--sort: string = "hot"
|
||||
] {
|
||||
let url = $"https://media-browser.internal.kempkens.network/management/jobs/BdfrDownload/run?args[subreddit]=($subreddit)&args[sort]=($sort)"
|
||||
|
||||
http get $url | ignore
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell -i bash -p git fd ripgrep
|
||||
# shellcheck disable=SC1008
|
||||
|
||||
if git remote -v | rg -q nedeco; then
|
||||
nix path-info -r "$(fd '^flake-profile-[a-z0-9]+$' ./.direnv/)" | while read -r dir; do
|
||||
echo "Uploading $dir ..."
|
||||
|
||||
if attic push nedeco:devshells "$dir"; then
|
||||
continue
|
||||
else
|
||||
echo "Ignoring error ..."
|
||||
fi
|
||||
done
|
||||
else
|
||||
echo "Doesn't look like a work repository"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# vim: set ft=sh:
|
Loading…
Reference in a new issue