Create GetProgress_WvUnpackDec.progress

This commit is contained in:
Wiesław Šoltés 2017-12-05 08:48:29 +01:00 коммит произвёл GitHub
Родитель 906c917f01
Коммит 80831a582f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,4 @@
function GetProgress(s)
if string.match(s, '^restored') ~= nil then return "100";
else return string.match(s, '(%d+)%% done'); end;
end