summaryrefslogblamecommitdiff
path: root/install.sh
blob: bf180966ead4733a687147bf84b83d94b034e997 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                             
                         
 

                                          
 
                             
                             

                                
                            





                                     
#!/usr/bin/env sh

DESTINATION="${1}"

if [ -z "${DESTINATION}" ]
then
	echo missing destination directory...
fi

mkdir -p "${DESTINATION}"

cp "apple-touch-icon.png" "${DESTINATION}"
cp "favicon.ico" "${DESTINATION}"

cp -r "font" "${DESTINATION}"
cp -r "html" "${DESTINATION}"
cp -r "image" "${DESTINATION}"
cp -r "include" "${DESTINATION}"
cp -r "svg" "${DESTINATION}"

mkdir -p "${DESTINATION}/css"
mkdir -p "${DESTINATION}/js"

cp "css/"*".css" "${DESTINATION}/css"
cp "js/"*".js" "${DESTINATION}/js"