xdapp-book/projects/wormhole-local-validator/setup.bash

9 lines
178 B
Bash
Raw Normal View History

2022-08-08 23:31:05 -07:00
#!/usr/bin/env bash
# Check if wormhole/ repo exists.
# If it doesn't then clone
if [ ! -d "./wormhole" ]
then
2022-08-26 15:38:36 -07:00
git clone https://github.com/wormhole-foundation/wormhole
2022-08-08 23:31:05 -07:00
fi