2023-07-21 09:12:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-03-21 11:31:48 +00:00
|
|
|
script="$0"
|
|
|
|
path="$(dirname $(realpath "$script"))"
|
|
|
|
dist="$path/dist"
|
|
|
|
site="$path/site"
|
2023-07-21 09:12:52 +00:00
|
|
|
|
2024-03-21 11:31:48 +00:00
|
|
|
[ ! -d "$dist" ] && mkdir "$dist"
|
|
|
|
|
|
|
|
shblg -i "$site" -o "$dist"
|