supress error outputs
This commit is contained in:
parent
3111c6ab29
commit
505794d883
@ -179,8 +179,8 @@ if [ $MOZILLA_DOWN -ne 0 ]; then
|
|||||||
# Clear already installed langpacks
|
# Clear already installed langpacks
|
||||||
mkdir -p $MOZ_EXTENSIONS_PROFILE_DIR
|
mkdir -p $MOZ_EXTENSIONS_PROFILE_DIR
|
||||||
if [ -f $FEDORA_LANGPACK_CONFIG ]; then
|
if [ -f $FEDORA_LANGPACK_CONFIG ]; then
|
||||||
rm `cat $FEDORA_LANGPACK_CONFIG`
|
rm `cat $FEDORA_LANGPACK_CONFIG` > /dev/null 2>&1
|
||||||
rm $FEDORA_LANGPACK_CONFIG
|
rm $FEDORA_LANGPACK_CONFIG > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Try without a local variant first, then with a local variant
|
# Try without a local variant first, then with a local variant
|
||||||
@ -191,7 +191,7 @@ if [ $MOZILLA_DOWN -ne 0 ]; then
|
|||||||
# Try to link global langpacks to an extension directory
|
# Try to link global langpacks to an extension directory
|
||||||
if [ -f $MOZ_LANGPACKS_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org/chrome/$SHORTMOZLOCALE.jar ]; then
|
if [ -f $MOZ_LANGPACKS_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org/chrome/$SHORTMOZLOCALE.jar ]; then
|
||||||
if [ -d $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org ]; then
|
if [ -d $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org ]; then
|
||||||
rmdir "$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org"
|
rmdir "$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org" > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
if ! [ -e $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org ]; then
|
if ! [ -e $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org ]; then
|
||||||
ln -s $MOZ_LANGPACKS_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org \
|
ln -s $MOZ_LANGPACKS_DIR/langpack-${SHORTMOZLOCALE}@firefox.mozilla.org \
|
||||||
@ -200,7 +200,7 @@ if [ $MOZILLA_DOWN -ne 0 ]; then
|
|||||||
fi
|
fi
|
||||||
elif [ -f $MOZ_EXTENSIONS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org/chrome/$MOZLOCALE.jar ]; then
|
elif [ -f $MOZ_EXTENSIONS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org/chrome/$MOZLOCALE.jar ]; then
|
||||||
if [ -d $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org ]; then
|
if [ -d $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org ]; then
|
||||||
rmdir "$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org"
|
rmdir "$MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org" > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
if ! [ -e $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org ]; then
|
if ! [ -e $MOZ_EXTENSIONS_PROFILE_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org ]; then
|
||||||
ln -s $MOZ_LANGPACKS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org \
|
ln -s $MOZ_LANGPACKS_DIR/langpack-${MOZLOCALE}@firefox.mozilla.org \
|
||||||
|
Loading…
Reference in New Issue
Block a user