diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-08-11 17:19:34 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-08-11 17:19:34 +0000 |
| commit | 10c63392dfa96f762a18317d11d77eca87682c0a (patch) | |
| tree | 8ba784fe2a577afb6f6ca263bdb2c65a479a630b | |
| parent | 315bdec3054bbf9cf35b04ca2f6840d481fac581 (diff) | |
| download | boca-10c63392dfa96f762a18317d11d77eca87682c0a.tar.gz boca-10c63392dfa96f762a18317d11d77eca87682c0a.zip | |
check language to warn
| -rwxr-xr-x | tools/boca-submit-run | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/boca-submit-run b/tools/boca-submit-run index 057db13..9de52bd 100755 --- a/tools/boca-submit-run +++ b/tools/boca-submit-run @@ -10,7 +10,7 @@ fi #Check if this script is running in a user in sudo group or root if groups | egrep -q "(sudo|root)" ; then echo "Este script deve ser executado por um usuario normal" - echo "Na Maratona este usuario, geralmente, é o 'icpc'" + echo "Na Maratona este usuario, geralmente, eh o 'icpc'" exit 1 fi @@ -70,7 +70,7 @@ fi if [ -r "$5" ]; then if [ "$4" != "C" -a "$4" != "C++11" -a "$4" != "Java" -a "$4" != "Python2" -a "$4" != "Python3" ]; then - echo "Warning: language name is not standard, be sure it is correct (this is not an error, it might be ok)" + echo "Warning: language name is not standard, be sure it is correct (this is not necessarily an error)" fi nom=`echo -n "$5" | perl -MURI::Escape -lne 'print uri_escape($_)'` |