Moved style.css to static directory
This commit is contained in:
parent
c99afd569d
commit
5d0cbfc000
2 changed files with 1 additions and 1 deletions
2
build.sh
2
build.sh
|
@ -5,7 +5,7 @@ source_to_target() { sed -E -e 's:\.\./src/:\./:' -e 's/.md$/.html/'; }
|
||||||
shopt -s globstar
|
shopt -s globstar
|
||||||
rm -rf dist/
|
rm -rf dist/
|
||||||
mkdir dist&&cd dist
|
mkdir dist&&cd dist
|
||||||
cp ../style.css .
|
cp -r ../static/* .
|
||||||
for file in $(du -a ../src/ | cut -f2 | grep -E '.md$'); do
|
for file in $(du -a ../src/ | cut -f2 | grep -E '.md$'); do
|
||||||
target="$(echo $file | source_to_target)"
|
target="$(echo $file | source_to_target)"
|
||||||
export CONTENT="$(pandoc --from markdown+emoji --wrap=none -i $file)"
|
export CONTENT="$(pandoc --from markdown+emoji --wrap=none -i $file)"
|
||||||
|
|
Loading…
Reference in a new issue