From 2c5308d4cdb198aa1edcaa2ce88e9f729900e7c1 Mon Sep 17 00:00:00 2001 From: Ralf Teusner Date: Mon, 30 Jul 2018 14:35:11 +0200 Subject: [PATCH] fix parsing problem of windows script --- app/assets/remote_scripts/windows.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/remote_scripts/windows.ps1 b/app/assets/remote_scripts/windows.ps1 index 9647d2e5..f548caea 100644 --- a/app/assets/remote_scripts/windows.ps1 +++ b/app/assets/remote_scripts/windows.ps1 @@ -62,6 +62,7 @@ function get_escaped_file_content ($file){ $content = $content.replace('\', '\\') $content = $content -replace "`r`n", '\n' $content = $content -replace "`n", '\n' + $content = $content -replace "`t", '\t' $content = $content.replace('"', '\"') return $content }