X-Git-Url: https://git.josue.xyz/?p=VSoRC%2F.git;a=blobdiff_plain;f=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fsrc%2Fshared%2FGetCommitHash.bat;fp=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fsrc%2Fshared%2FGetCommitHash.bat;h=0000000000000000000000000000000000000000;hp=a9f8e9cef0fc24b89065c22e576dc8821dd39a9d;hb=5e96dd57ddd883604e87f62bdddcb111c63a6e1a;hpb=acb5f682a2b75b972710cabd81658f63071324b0 diff --git a/node_modules/node-pty/deps/winpty/src/shared/GetCommitHash.bat b/node_modules/node-pty/deps/winpty/src/shared/GetCommitHash.bat deleted file mode 100644 index a9f8e9c..0000000 --- a/node_modules/node-pty/deps/winpty/src/shared/GetCommitHash.bat +++ /dev/null @@ -1,13 +0,0 @@ -@echo off - -REM -- Echo the git commit hash. If git isn't available for some reason, -REM -- output nothing instead. - -git rev-parse HEAD >NUL 2>NUL && ( - git rev-parse HEAD -) || ( - echo none -) - -REM -- Set ERRORLEVEL to 0 using this cryptic syntax. -(call )