#!/bin/bash # # WTFPL templater module. # # Parameters SHARE="$1" # Include basic functions source $SHARE/templater/functions || exit 1 # Do What the Fuck You Want to Public License - WTFPL function templater_wtfpl { if [ ! -e "LICENSE" ]; then templater_echo "Setting up Do What the Fuck You Want Public License..." cp $SHARE/wtfpl/files/LICENSE . else templater_echo "LICENSE already set" fi } # Dispatch templater_wtfpl