mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
10 lines
240 B
Bash
Executable File
10 lines
240 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl
|
|
|
|
set -euo pipefail
|
|
|
|
dirname="$(dirname "$0")"
|
|
|
|
curl -O --silent --output-dir "$dirname" 'https://swalocaldeploy.azureedge.net/downloads/versions.json'
|
|
echo "" >> "$dirname/versions.json"
|