Skip to content

Commit

Permalink
Exclude excess warnings and errors from output (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
romandemidov authored Jun 12, 2021
1 parent 3758f63 commit 8e5e6cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/run-desktopeditors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,19 @@ GS_SCHEMA_DIR=$XDG_DATA_HOME/glib-2.0/schemas
if [ ! -d $GS_SCHEMA_DIR ]; then
mkdir -p $GS_SCHEMA_DIR
for d in "${data_dirs_array[@]}"; do
ln -s $d/glib-2.0/schemas/*.xml $GS_SCHEMA_DIR
ln -sf $d/glib-2.0/schemas/*.xml $GS_SCHEMA_DIR
done

$SNAP/usr/lib/$ARCH/glib-2.0/glib-compile-schemas $GS_SCHEMA_DIR
fi

export LC_ALL=C.UTF-8

# Create $XDG_RUNTIME_DIR if it doesn't exist
if [ ! -d "$XDG_RUNTIME_DIR" ]; then
mkdir -p $XDG_RUNTIME_DIR -m 700
fi

# Icon themes cache
#if [ ! -d $XDG_DATA_HOME/icons ]; then
# mkdir -p $XDG_DATA_HOME/icons
Expand Down
2 changes: 2 additions & 0 deletions snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ layout:
bind: $SNAP/usr/bin
/usr/lib/x86_64-linux-gnu:
bind: $SNAP/usr/lib/x86_64-linux-gnu
/etc/fonts:
bind: $SNAP/etc/fonts

apps:
onlyoffice-desktopeditors:
Expand Down

0 comments on commit 8e5e6cd

Please sign in to comment.