mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-15 11:00:09 -07:00
8 lines
162 B
Bash
8 lines
162 B
Bash
#!/bin/bash
|
|
|
|
THISDIR=`dirname $0`
|
|
LANGFILE=$THISDIR/../app/src/main/assets/language_list.txt
|
|
|
|
rm $LANGFILE
|
|
ls $THISDIR/../app/src/main/res/values-* >> $LANGFILE
|
|
|