diff options
Diffstat (limited to 'scripts/get_langs.sh')
-rwxr-xr-x | scripts/get_langs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/get_langs.sh b/scripts/get_langs.sh index 69454b3e..814f8cb9 100755 --- a/scripts/get_langs.sh +++ b/scripts/get_langs.sh @@ -24,5 +24,5 @@ else echo 'Unknown product, dying...' exit 1 fi -LANGS=$(echo ${INBUILT_LANGS} ${XPI_LANGS} | tr " " "\n" | sort -d | uniq) -echo ${LANGS} +LANGS=$(echo ${INBUILT_LANGS} ${XPI_LANGS} | tr " " "\n" | sort -d | uniq | tr "\n" " ") +echo "LANGS=(${LANGS})" |