aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-08-01 21:34:28 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2015-08-01 21:34:28 +1200
commit1f818ff715d6ac0b8cd4ce869113bed4c658d837 (patch)
treef9f3d274b62c93161dcf1d2529c1bb092de18548 /tools
parentc7a93d18a1550842aff7c65b37a379026741d08d (diff)
downloadtraccar-server-1f818ff715d6ac0b8cd4ce869113bed4c658d837.tar.gz
traccar-server-1f818ff715d6ac0b8cd4ce869113bed4c658d837.tar.bz2
traccar-server-1f818ff715d6ac0b8cd4ce869113bed4c658d837.zip
Update various script files
Diffstat (limited to 'tools')
-rwxr-xr-xtools/hex.sh2
-rwxr-xr-xtools/minify.sh2
-rwxr-xr-xtools/test.sh1
-rwxr-xr-xtools/translate.py4
4 files changed, 9 insertions, 0 deletions
diff --git a/tools/hex.sh b/tools/hex.sh
index bfc60c0a9..2a7b55901 100755
--- a/tools/hex.sh
+++ b/tools/hex.sh
@@ -1,3 +1,5 @@
+#!/bin/sh
+
#
# This test data assumes device "352964051908664" exists.
#
diff --git a/tools/minify.sh b/tools/minify.sh
index 14177ec63..4d402d50e 100755
--- a/tools/minify.sh
+++ b/tools/minify.sh
@@ -1,3 +1,5 @@
+#!/bin/sh
+
cd $(dirname $0)/../web
SDK="../../ext-6.0.0"
diff --git a/tools/test.sh b/tools/test.sh
index 5cebc744b..de654e283 100755
--- a/tools/test.sh
+++ b/tools/test.sh
@@ -1,3 +1,4 @@
+#!/bin/sh
#
# This test data assumes three devices exist:
diff --git a/tools/translate.py b/tools/translate.py
index 69c55979b..8087e3161 100755
--- a/tools/translate.py
+++ b/tools/translate.py
@@ -3,6 +3,10 @@
import re
import os
+abspath = os.path.abspath(__file__)
+dname = os.path.dirname(abspath)
+os.chdir(dname)
+
path = '../web/l10n/'
files = [f for f in os.listdir(path) if os.path.isfile(path + f) and f.endswith('.js') and not f.endswith('en.js')]