mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 13:52:26 +08:00
10 lines
125 B
Bash
Executable File
10 lines
125 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
for file in cmd/*; do
|
|
if test -d $file; then
|
|
cd $file && swag init -g main.go;
|
|
cd -;
|
|
fi
|
|
done
|
|
|