mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 00:48:06 +00:00
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
:> pnpm-deps-hash.txt # Clear hash to trigger rebuild
|
|
BUILD_LOG="$(mktemp)"
|
|
nix build -L ..#airi.pnpmDeps |& tee "$BUILD_LOG"
|
|
HASH="$(grep -aoP 'got: +\Ksha256-\S{43}=' "$BUILD_LOG")"
|
|
[ -n "$HASH" ] && echo "$HASH" > pnpm-deps-hash.txt
|