mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 03:32:06 +00:00
4 lines
138 B
Bash
4 lines
138 B
Bash
#!/bin/bash
|
|
for filename in proto/*.proto; do
|
|
protoc --dart_out=../lib/modules/more/data_and_storage/providers/proto "$filename"
|
|
done
|