summaryrefslogblamecommitdiffstats
path: root/install
blob: 5da3f6c710c0492beb5f48e9baf216f6d904e8fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           
                                                      


                        

                                                                                                                                                                          


                



                                                              
                                                                                                                                                                         
#!/bin/bash
./bin/compose-html assets/pages-src/ dist/pages/ .html
cp -r assets/css dist/
cp -r assets/fonts dist/
cp -r assets/img dist/
find assets/root/ -type f \( ! -name "*.bvr" \) -exec cp -r "{}" dist/  \;
find assets/root/ -name "*.bvr" -printf "%f\n" | xargs -I % bash -c "FILE='%'; FILE_DST="dist/\${FILE/.bvr/}"; ./bin/compose-single \"assets/root/\$FILE\" \"\$FILE_DST\""

# js bvr fajli
mkdir -p dist/js
cd assets/js
# js ne znam te magije
find . -type f \( ! -name "*.bvr" \) | cpio -pdm ../../dist/js
cd ../../
find assets/js/ -name "*.bvr" -printf "%f\n" | xargs -I % bash -c "FILE='%'; FILE_DST="dist/js/\${FILE/.bvr/}"; ./bin/compose-single \"assets/js/\$FILE\" \"\$FILE_DST\""