From 8dae118225f3daee7a33d2b9163ad8ebb49479e8 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Thu, 23 Apr 2020 06:22:47 +0300 Subject: [PATCH] w --- helpers/win-helpers.psm1 | 2 +- installers/nix-setup-template.sh | 2 -- installers/win-setup-template.ps1 | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/helpers/win-helpers.psm1 b/helpers/win-helpers.psm1 index d796a65..9520fbd 100644 --- a/helpers/win-helpers.psm1 +++ b/helpers/win-helpers.psm1 @@ -11,5 +11,5 @@ function Extract-7ZipArchive { ) Write-Debug "Extract $ArchivePath to $OutputDirectory" - 7z x $ArchivePath -o"$OutputDirectory" -y + 7z x $ArchivePath -o"$OutputDirectory" -y | Out-Null } \ No newline at end of file diff --git a/installers/nix-setup-template.sh b/installers/nix-setup-template.sh index dd6bc70..c24ff22 100644 --- a/installers/nix-setup-template.sh +++ b/installers/nix-setup-template.sh @@ -21,7 +21,5 @@ echo "Copy Node.js binaries to hostedtoolcache folder" cp -R ./* $NODE_TOOLCACHE_VERSION_ARCH_PATH rm $NODE_TOOLCACHE_VERSION_ARCH_PATH/setup.sh -ls $NODE_TOOLCACHE_VERSION_ARCH_PATH - echo "Create complete file" touch $NODE_TOOLCACHE_VERSION_PATH/x64.complete diff --git a/installers/win-setup-template.ps1 b/installers/win-setup-template.ps1 index 2011d8c..7bd3034 100644 --- a/installers/win-setup-template.ps1 +++ b/installers/win-setup-template.ps1 @@ -33,7 +33,5 @@ Write-Host "Copy Node.js binaries to hostedtoolcache folder" Copy-Item -Path * -Destination $NodeToolcacheArchitecturePath Remove-Item $NodeToolcacheArchitecturePath\setup.ps1 -Force | Out-Null -Get-ChildItem $NodeToolcacheArchitecturePath - Write-Host "Create complete file" New-Item -ItemType File -Path $NodeToolcacheVersionPath -Name "$Architecture.complete" | Out-Null \ No newline at end of file