mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
8 lines
168 B
Bash
Executable file
8 lines
168 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
cd "$(dirname "$BASH_SOURCE")"
|
|
|
|
curl https://binary.ninja/js/hashes.js -o tmp.json
|
|
jq --tab --sort-keys <tmp.json >hashes.json
|
|
rm tmp.json
|