Commit c16d990f authored by Anton Midyukov's avatar Anton Midyukov

Revert "rescue: do not cleanup locales"

This reverts commit a7b7f34b. This was too much. We just need to leave the C locale as well.
parent 97d2f284
#!/bin/sh
# cleanup extra locales
CLEANUP_DIRS="/usr/lib/locale /usr/share/locale"
for CLEANUP_DIR in $CLEANUP_DIRS; do
cd "$CLEANUP_DIR"
rm -fr $(ls -1 |sed '/en_US/d' | tr -s '\r\n' ' ')
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment