-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- renamed unix script to header - added script for Windows - updated workflow to add Windows script as artifact - fixed coloring in plain reporter
- Loading branch information
Showing
5 changed files
with
33 additions
and
9 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@echo off | ||
|
||
rem | ||
rem diKTat command-line client for Windows | ||
rem | ||
rem Uses Git Bash, so requires Git to be installed. | ||
rem | ||
|
||
set "git_install_location=%ProgramFiles%\Git" | ||
set "git_url=https://github.com/git-for-windows/git/releases/latest" | ||
|
||
if exist "%git_install_location%" ( | ||
setlocal | ||
set "PATH=%git_install_location%\usr\bin;%PATH%" | ||
for /f "usebackq tokens=*" %%p in (`cygpath "%~dpn0"`) do bash --noprofile --norc %%p %* | ||
) else ( | ||
echo Expecting Git for Windows at %git_install_location%; please install it from %git_url% | ||
start %git_url% | ||
) |
File renamed without changes.
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