aboutsummaryrefslogtreecommitdiff
path: root/share/templater/gpl/setup
blob: 3491e939ae5c19afa9d0e266a51e391db4413c1d (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