diff options
author | Carlos Santos <casantos@datacom.ind.br> | 2016-08-16 23:56:23 -0300 |
---|---|---|
committer | Carlos Santos <casantos@datacom.ind.br> | 2016-08-16 23:56:23 -0300 |
commit | 29df8cccf445aaacd7bd1163ab0c4860ee3e1890 (patch) | |
tree | 5aed7602906719ea70b30e7af1031988feb125d4 /scripts/functions | |
parent | 87eb166c5bd52b4d205fb652cc3981e0a9c12d65 (diff) | |
download | crosstool-ng-29df8cccf445aaacd7bd1163ab0c4860ee3e1890.tar.gz crosstool-ng-29df8cccf445aaacd7bd1163ab0c4860ee3e1890.tar.bz2 crosstool-ng-29df8cccf445aaacd7bd1163ab0c4860ee3e1890.zip |
scripts/functions: fix log level in call to CT_DoLog
It must be "DEBUG", not "Debug"
Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index 62d264e3..ca7713a0 100644 --- a/scripts/functions +++ b/scripts/functions @@ -928,7 +928,7 @@ CT_GetGit() { else # Woops... CT_DoExecLog ALL rm -rf "${dir}" - CT_DoLog Debug "Could not clone '${basename}'" + CT_DoLog DEBUG "Could not clone '${basename}'" return 1 fi } |