aboutsummaryrefslogtreecommitdiff
path: root/share/templater/gpl/setup
blob: 93151cec7fafee5dc8b7cda57e1729634a89f372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
#
# GPLv3 templater module.
#

# Parameters
SHARE="$1"

# Include basic functions
source $SHARE/templater/functions || exit 1

# GPLv3 License
function templater_gpl {
  if [ ! -e "LICENSE" ]; then
    templater_echo "Setting up GPLv3 License..."
    cp $SHARE/gpl/files/LICENSE .
  else
    templater_echo "LICENSE already set"
  fi
}

# Dispatch
templater_gpl