diff options
author | filip <filip.komar@gmail.com> | 2013-12-26 20:50:40 +0100 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2013-12-26 20:50:40 +0100 |
commit | 614f115f63d0bd3c0eb30c78c519ba8d4a758ae3 (patch) | |
tree | dea480d102c93a237bee14c3e1cd2858f1290a8c | |
parent | 74b5d05d51f6668fa3054b6151f4f254fd4a171b (diff) | |
download | tools-614f115f63d0bd3c0eb30c78c519ba8d4a758ae3.tar tools-614f115f63d0bd3c0eb30c78c519ba8d4a758ae3.tar.gz tools-614f115f63d0bd3c0eb30c78c519ba8d4a758ae3.tar.bz2 tools-614f115f63d0bd3c0eb30c78c519ba8d4a758ae3.tar.xz tools-614f115f63d0bd3c0eb30c78c519ba8d4a758ae3.zip |
Don't use tilde character (~) for directory expansion as it doesn't work here!
-rwxr-xr-x | check_for_translation_work.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/check_for_translation_work.sh b/check_for_translation_work.sh index a267fb2e..dc3f12d7 100755 --- a/check_for_translation_work.sh +++ b/check_for_translation_work.sh @@ -7,7 +7,7 @@ # # Filip Komar, 2012, 2013 # Remco Rijnders, 2012 -# $Id: check_for_translation_work.sh 2013-12-07 18:07:00 UTC filip $ +# $Id: check_for_translation_work.sh 2013-12-26 19:49:00 UTC filip $ # # Please see git for a list of changes to this script. # @@ -22,6 +22,7 @@ language_code=xx # Where to put the files from repositories and your working directory, # please make sure those directories exist before running the script!!! +# Don't use tilde character (~) for directory expansion as it doesn't work! svn_directory="/home/user/Mageia/i18n/svn" git_directory="/home/user/Mageia/i18n/git" # added after git transition working_translations_directory="/home/user/Mageia/i18n/translations/$language_code" |