From 59bae92aafdc6ac04156c9e8d1adb2c782a99f79 Mon Sep 17 00:00:00 2001 From: Jason Gessner Date: Fri, 7 Feb 2025 01:52:40 +0000 Subject: [PATCH] Update the add-card-to-test-fixtures.sh to use raw_cards.yml --- bin/add-card-to-test-fixtures.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/add-card-to-test-fixtures.sh b/bin/add-card-to-test-fixtures.sh index 689f3d52..6519b97c 100755 --- a/bin/add-card-to-test-fixtures.sh +++ b/bin/add-card-to-test-fixtures.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Adds a v2 card to the test fixtures cards.yml file, with necessary transformations. +# Adds a v2 card to the test fixtures cards.yml file, with necessary transformations. set -e set -u @@ -15,4 +15,4 @@ cat ../netrunner-cards-json/v2/cards/${CARD_ID}.json | \ grep -v -E '^({|})' | \ perl -pne 's/,$//g; s/^ "/ /; s/": /: /' |\ grep -v '^ subtypes:' \ - >> test/fixtures/cards.yml + >> test/fixtures/raw_cards.yml