Skip to content

Commit

Permalink
Use mithril released version 2450.0 instead of unstable (#4979)
Browse files Browse the repository at this point in the history
fix #4975
  • Loading branch information
paolino authored Feb 13, 2025
2 parents 522814f + 551bf4f commit ba3d76f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions run/common/nix/snapshot.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
#! /usr/bin/env bash
# shellcheck shell=bash


function mithril () {
nix shell 'github:input-output-hk/mithril' --command mithril-client $@
function mithril() {
nix shell 'github:input-output-hk/mithril?ref=2450.0' --command mithril-client $@
}

function jq () {
nix shell 'nixpkgs#jq' --command jq $@
function jq() {
nix shell 'nixpkgs#jq' --command jq $@
}

set -euox pipefail

SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)

# shellcheck disable=SC1091
# shellcheck disable=SC2086
Expand Down

0 comments on commit ba3d76f

Please sign in to comment.