From 107bea9d5e269e467988f4557c5ba648b1da9efc Mon Sep 17 00:00:00 2001 From: Bouke Versteegh Date: Mon, 11 Apr 2022 14:45:20 +0200 Subject: [PATCH] fix: run dockerized from dos --- bin/dockerized.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dockerized.bat b/bin/dockerized.bat index ff7730d..54e791c 100644 --- a/bin/dockerized.bat +++ b/bin/dockerized.bat @@ -1,3 +1,3 @@ @ECHO OFF -SET DOCKERIZED_ROOT="%~dp0%\.." -PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%DOCKERIZED_ROOT%\bin\dockerized.ps1' %*" +SET _DOCKERIZED_PS=%~dp0%dockerized.ps1 +PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '%_DOCKERIZED_PS%' %*"