1
0

kivy build: test and document that make_locale is to be run first

This commit is contained in:
SomberNight
2019-02-07 16:45:09 +01:00
parent 6fb974227b
commit ba08b2279d
4 changed files with 40 additions and 17 deletions

View File

@@ -7,19 +7,19 @@ ROOT_FOLDER="$CONTRIB"/..
PACKAGES="$ROOT_FOLDER"/packages/
LOCALE="$ROOT_FOLDER"/electrum/locale/
if [ ! -d "$LOCALE" ]; then
echo "Run make_locale first!"
exit 1
fi
if [ ! -d "$PACKAGES" ]; then
echo "Run make_packages first!"
exit 1
fi
(
cd "$ROOT_FOLDER"
if [ ! -d "$LOCALE" ]; then
echo "Run make_locale first!"
exit 1
fi
if [ ! -d "$PACKAGES" ]; then
echo "Run make_packages first!"
exit 1
fi
echo "'git clean -fx' would delete the following files: >>>"
git clean -fx --dry-run
echo "<<<"