mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
15 lines
586 B
Bash
Executable file
15 lines
586 B
Bash
Executable file
#! /usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p coreutils curl jq common-updater-scripts cargo
|
|
# shellcheck shell=bash
|
|
|
|
set -euo pipefail
|
|
|
|
version=$(curl -s https://api.github.com/repos/huacnlee/autocorrect/releases/latest | jq -r .tag_name)
|
|
update-source-version autocorrect "${version#v}"
|
|
|
|
tmp=$(mktemp -d)
|
|
trap 'rm -rf -- "${tmp}"' EXIT
|
|
|
|
git clone --depth 1 --branch "${version}" https://github.com/huacnlee/autocorrect.git "${tmp}/autocorrect"
|
|
cargo generate-lockfile --manifest-path "${tmp}/autocorrect/Cargo.toml"
|
|
cp "${tmp}/autocorrect/Cargo.lock" "$(dirname "$0")/Cargo.lock"
|