mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-14 21:19:36 +00:00
8 lines
222 B
Bash
Executable file
8 lines
222 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
SOURCE_DIR="${PWD}/markdown"
|
|
TARGET_DIR="${PWD}/public"
|
|
pipenv run build
|
|
cp "$TARGET_DIR/assets/images/favicon.png" "$TARGET_DIR/favicon.ico" -v
|
|
cp "$SOURCE_DIR/.well-known" "$TARGET_DIR/" -rv
|