mirror of
https://git.davidovski.xyz/davidovski.git
synced 2024-08-15 00:43:29 +00:00
10 lines
163 B
Bash
Executable file
10 lines
163 B
Bash
Executable file
#!/bin/sh
|
|
|
|
script="$0"
|
|
path="$(dirname $(realpath "$script"))"
|
|
dist="$path/dist"
|
|
site="$path/site"
|
|
|
|
[ ! -d "$dist" ] && mkdir "$dist"
|
|
|
|
shblg -i "$site" -o "$dist"
|