-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prior to this commit the support for Windows was limited to modern temrinal emulators. This commit uses colorable.NewColorableStout() if we detect a windows OS. This handles the interpretation of the tput escape sequences and color printing. Currently tested on Server 2019 * cmd.exe * pwsh 7.2
- Loading branch information
Showing
4 changed files
with
35 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
Vagrant.configure('2') do |config| | ||
config.vm.box = 'gusztavvargadr/windows-server-2019-standard' | ||
|
||
config.vm.provider 'virtualbox' do |vb| | ||
vb.memory = 8192 | ||
vb.cpus = 4 | ||
end | ||
|
||
config.vm.provision 'shell', path: '../scripts/bootstrap.ps1' | ||
profile_destination = 'C:\Users\vagrant\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1' | ||
config.vm.provision 'file', source: '../scripts/profile.ps1', destination: profile_destination | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters