6 lines
152 B
Plaintext
6 lines
152 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
targetDir=../aqt_data/locale/fluent
|
||
|
test -d $targetDir || mkdir -p $targetDir
|
||
|
rsync -a --delete --exclude=templates ftl/core/* $targetDir/
|