mirror of
https://github.com/ankitects/anki.git
synced 2025-11-16 17:47:11 -05:00
5 lines
152 B
Bash
Executable file
5 lines
152 B
Bash
Executable file
#!/bin/bash
|
|
|
|
targetDir=../aqt_data/locale/fluent
|
|
test -d $targetDir || mkdir -p $targetDir
|
|
rsync -a --delete --exclude=templates ftl/core/* $targetDir/
|