From ab77c9ce3d305f69b5546c8e13906293a8f93cbc Mon Sep 17 00:00:00 2001 From: Nicolas Pomepuy <nicolas@videolabs.io> Date: Wed, 21 Jun 2023 12:14:28 +0200 Subject: [PATCH] Fix improper publish script path variable check --- libvlc/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvlc/build.gradle b/libvlc/build.gradle index 58ed105..9c35855 100644 --- a/libvlc/build.gradle +++ b/libvlc/build.gradle @@ -114,4 +114,4 @@ def vlcRevision() { return vlc.toString() } -if (binding.hasVariable("$rootProject.ext.publishScriptPath")) apply from: "$rootProject.ext.publishScriptPath" \ No newline at end of file +if (rootProject.hasProperty('publishScriptPath')) apply from: "$rootProject.ext.publishScriptPath" \ No newline at end of file -- GitLab