Skip to content
Snippets Groups Projects
Commit 66fa77d5 authored by Richard Alam's avatar Richard Alam
Browse files

- tool to cleanup transifex downloaded files

parent 2ece654c
No related merge requests found
#!/bin/bash
for i in * ; do
if [ -d "$i" ]; then
# echo "processing $i"
if [ -f $i.properties ]; then
if [ "$1" == "-test" ]; then
echo "mv -f $i.properties $i/bbbResources.properties"
else
#echo "no"
mv -f $i.properties $i/bbbResources.properties
fi
fi
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment