From 92967e20446a4bdda1b897cf20716364ba184c84 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20G=C3=BCnnewig?= Date: Mon, 22 Sep 2003 19:28:46 +0000 Subject: [PATCH] Adapted winecheck to use new environment variable syntax (ex. %HOME%). --- tools/winecheck | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winecheck b/tools/winecheck index 793425602d4..a6f433713b1 100755 --- a/tools/winecheck +++ b/tools/winecheck @@ -346,7 +346,7 @@ sub Do_Config_Drive { $level = $serious ? $is_failed : $is_bad; $reason = "wrong Path format ".$path; } - elsif ($path =~ /\$\{(.*)\}$/) + elsif ($path =~ /\%(.*)\%$/) { # get path assigned to environment variable my $envpath = $ENV{$1}; -- 2.11.4.GIT