quitando basura del index
[VSoRC/.git] / node_modules / node-pty / deps / winpty / src / shared / GetCommitHash.bat
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 (file)
index a9f8e9c..0000000
+++ /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 )