Skip to content

Commit

Permalink
Allow gentx folders to be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
jkilpatr committed Mar 7, 2024
1 parent 34e76fc commit 5cfd3ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/gentx-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ jobs:
cp ./althea-l1-dress-rehersal-genesis.json $HOME/.althea/config/genesis.json
mkdir -p ./gentx
mkdir -p ./gentxs
# allow this copy routine to fail if there are no files in one folder
set +e
cp ./gentx/* $HOME/.althea/config/gentx/
cp ./gentxs/* $HOME/.althea/config/gentx/
set -e
- name: Validate Genesis
run: althea validate-genesis
- name: Collect Gentxs
Expand Down

0 comments on commit 5cfd3ff

Please sign in to comment.