~francesc.busquets/jclic/trunk

« back to all changes in this revision

Viewing changes to dist/linux/bin/jclicreports

  • Committer: Francesc Busquets
  • Date: 2018-09-28 08:33:53 UTC
  • Revision ID: git-v1:fd617238af1befa8c19a50190ddbe718afa3012f
Avoid incorrect keyboard layout settings caused by the 'LANGUAGE' environment variable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
 
3
3
# jclicreports wrapper script
4
 
#
5
 
# JClic Reports will use the system's default "java" command.
6
 
# This command points to the JVM currently selected
7
 
# in "update-alternatives". To change it, call before:
8
 
# update-alternatives --config java
9
 
#
10
 
 
 
4
 
 
5
# Unset The "LANGUAGE" environment variable
 
6
# to avoid conflicts with the JVM keyboard layout
 
7
export LANGUAGE=""
 
8
 
 
9
# Launch JClic Reports
11
10
java -jar /usr/share/java/jclicreports.jar "$@"
12
11