forked from mirrors/nixpkgs
a443ee3613
Update to latest. Also refactor to adapt to slight change in `./rt-deps-bin-srcs.json` format.
22 lines
587 B
Plaintext
Executable file
22 lines
587 B
Plaintext
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -I nixpkgs=../../../.. -i bash -p curl jq unzip
|
|
set -euf -o pipefail
|
|
|
|
declare scriptDir
|
|
scriptDir=$(cd "$(dirname "$0")"; pwd)
|
|
1>&2 echo "scriptDir='$scriptDir'"
|
|
|
|
. "$scriptDir/../_maintainers/update-bin-srcs-lib.sh"
|
|
|
|
declare extPublisher="ms-dotnettools"
|
|
declare extName="csharp"
|
|
declare defaultExtVersion="1.23.15"
|
|
declare extVersion="${1:-$defaultExtVersion}"
|
|
|
|
formatExtRuntimeDeps \
|
|
"$extPublisher" "$extName" "$extVersion" \
|
|
| computeAndAttachExtRtDepsChecksums \
|
|
| jqStreamToJson \
|
|
| tee "$scriptDir/rt-deps-bin-srcs.json" \
|
|
| jq '.'
|