#!/bin/bash # # BSD License templater module. # # Parameters SHARE="$1" # Include basic functions source $SHARE/templater/functions || exit 1 # BSD License function templater_bsd { if [ ! -e "LICENSE" ]; then templater_echo "Setting up BSD 3-clause (New BSD) License..." cp $SHARE/bsd/files/LICENSE . else templater_echo "LICENSE already set" fi } # Dispatch templater_bsd