mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-01-11 22:40:36 +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
|