From 92dddb8fd82b95045214bd54ad753047edf9957a Mon Sep 17 00:00:00 2001 From: Faryan Rezagholi Date: Fri, 13 Aug 2021 02:20:34 +0200 Subject: [PATCH] removed unused scripts --- Tools/copy_puttyng.ps1 | 15 --------------- Tools/copy_themes.ps1 | 19 ------------------- Tools/copy_tiles.ps1 | 17 ----------------- 3 files changed, 51 deletions(-) delete mode 100644 Tools/copy_puttyng.ps1 delete mode 100644 Tools/copy_themes.ps1 delete mode 100644 Tools/copy_tiles.ps1 diff --git a/Tools/copy_puttyng.ps1 b/Tools/copy_puttyng.ps1 deleted file mode 100644 index 786bfbe8..00000000 --- a/Tools/copy_puttyng.ps1 +++ /dev/null @@ -1,15 +0,0 @@ -param ( - [string] - [Parameter(Mandatory=$true)] - $SolutionDir, - - [string] - [Parameter(Mandatory=$true)] - $TargetDir -) - -Write-Output "===== Beginning $($PSCmdlet.MyInvocation.MyCommand) =====" -Write-Output "Copying PUTTYNG to correct directory" -Copy-Item -Path (Join-Path -Path $SolutionDir -ChildPath "mRemoteNG\Resources\PuTTYNG.exe") -Destination $TargetDir -Force - -Write-Output "" \ No newline at end of file diff --git a/Tools/copy_themes.ps1 b/Tools/copy_themes.ps1 deleted file mode 100644 index f332e73e..00000000 --- a/Tools/copy_themes.ps1 +++ /dev/null @@ -1,19 +0,0 @@ -param ( - [string] - [Parameter(Mandatory=$true)] - $SolutionDir, - - [string] - [Parameter(Mandatory=$true)] - $TargetDir -) - -Write-Output "===== Beginning $($PSCmdlet.MyInvocation.MyCommand) =====" -Write-Output "Copying THEMES folder to output" - -$sourceFiles = [io.path]::combine($SolutionDir , 'mRemoteNG\Resources\Themes' ) -$DestinationDir = [io.path]::combine($TargetDir , 'Themes') - -robocopy $sourceFiles $DestinationDir *.vstheme /s - -Write-Output "" \ No newline at end of file diff --git a/Tools/copy_tiles.ps1 b/Tools/copy_tiles.ps1 deleted file mode 100644 index a5cbc53c..00000000 --- a/Tools/copy_tiles.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -param ( - [string] - [Parameter(Mandatory=$true)] - $SolutionDir, - - [string] - [Parameter(Mandatory=$true)] - $TargetDir -) - -Write-Output "===== Beginning $($PSCmdlet.MyInvocation.MyCommand) =====" -Write-Output "Copying TILES folder to output" - -$sourceFiles = [io.path]::combine($SolutionDir , 'mRemoteNG\Resources\Tiles' ) -robocopy $sourceFiles $TargetDir *.* - -Write-Output "" \ No newline at end of file