boardroom-inc-protocol-Info/scripts/add_new_protocol.sh
2021-02-25 13:47:46 -06:00

20 lines
447 B
Bash
Executable File

#!/bin/bash
# A bash script to add protocol info directory skeleton
for arg in "$@"
do
if [ "$arg" == "--help" ] || [ "$arg" == "-h" ]
then
echo "Pass in the name of the protocol whose info you want to add. e.g: ./add_new_protocol.sh rarible"
else
mkdir -p ./$arg
mkdir -p ./$arg/calls
touch ./$arg/events.json
touch ./$arg/overview.md
touch ./$arg/logo.png
touch ./$arg/header.png
fi
done
echo "Arg 1: $1"