Fix gradlew location when trying to location a gradle executable

This commit is contained in:
Louis Boudreau 2023-01-10 13:53:13 -05:00
Родитель 7aa963664c
Коммит 989afebf9d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -66,7 +66,7 @@ module Licensed
return @executable if defined?(@executable)
@executable = begin
gradlew = File.join(config.pwd, "gradlew")
gradlew = File.join(config.root, "gradlew")
return gradlew if File.executable?(gradlew)
"gradle" if Licensed::Shell.tool_available?("gradle")