From 4c66376e96abe172a0633e27f9d277a0144bd2db Mon Sep 17 00:00:00 2001 From: 0o-de-lally <1364012+0o-de-lally@users.noreply.github.com> Date: Mon, 30 Oct 2023 20:22:31 +0000 Subject: [PATCH] update makefile --- tools/genesis/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/genesis/Makefile b/tools/genesis/Makefile index 4e6fd344c..61a5af7f8 100644 --- a/tools/genesis/Makefile +++ b/tools/genesis/Makefile @@ -9,9 +9,9 @@ FUTURE_USES = 0.70 endif ifndef RECOVERY_FILE -RECOVERY_FILE = sample_end_user_single +RECOVERY_FILE = v5_recovery # RECOVERY_FILE = sample_export_recovery -# RECOVERY_FILE = sample_rotated_auth + endif ifndef YEARS @@ -32,7 +32,8 @@ endif genesis: - cargo r -- genesis --org-github ${GIT_ORG} \ + cargo r -- -c ${CHAIN} \ + genesis --org-github ${GIT_ORG} \ --name-github ${GIT_REPO} \ --local-framework \ --json-legacy ./tests/fixtures/${RECOVERY_FILE}.json \ @@ -44,7 +45,8 @@ genesis: wizard: - cargo r -- wizard --org-github ${GIT_ORG} \ + cargo r -- -c ${CHAIN} \ + wizard --org-github ${GIT_ORG} \ --name-github ${GIT_REPO} \ --local-framework \ --json-legacy ./tests/fixtures/${RECOVERY_FILE}.json \