summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-03-23 12:33:59 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-03-23 12:33:59 +0100
commit6b917a6599cd97ae4626809e88adc4aa74323a7e (patch)
treefcd7203361e5c93f8c5c4b6d6b326d56db9fc81c /bin
parent9edcbd941951e53c79b84b8d3bbbca741d2c9af4 (diff)
downloadpylint-git-6b917a6599cd97ae4626809e88adc4aa74323a7e.tar.gz
fix #19498: apply windows batch patch
Diffstat (limited to 'bin')
-rw-r--r--bin/epylint.bat19
-rw-r--r--bin/pylint-gui.bat23
-rw-r--r--bin/pylint.bat23
-rw-r--r--bin/pyreverse.bat21
-rw-r--r--bin/symilar.bat23
5 files changed, 20 insertions, 89 deletions
diff --git a/bin/epylint.bat b/bin/epylint.bat
index a50678204..81d4e186f 100644
--- a/bin/epylint.bat
+++ b/bin/epylint.bat
@@ -1,16 +1,5 @@
@echo off
-rem = """-*-Python-*- script
-rem -------------------- DOS section --------------------
-rem You could set PYTHONPATH or TK environment variables here
-python -x "%~f0" %*
-goto exit
-
-"""
-# -------------------- Python section --------------------
-from pylint import epylint
-epylint.Run()
-
-
-DosExitLabel = """
-:exit
-rem """
+rem Use python to execute the python script having the same name as this batch
+rem file, but without any extension, located in the same directory as this
+rem batch file
+python "%~dpn0" %*
diff --git a/bin/pylint-gui.bat b/bin/pylint-gui.bat
index b721e5c37..88e566ba0 100644
--- a/bin/pylint-gui.bat
+++ b/bin/pylint-gui.bat
@@ -1,20 +1,5 @@
@echo off
-rem = """-*-Python-*- script
-@echo off
-rem -------------------- DOS section --------------------
-rem You could set PYTHONPATH or TK environment variables here
-python -x "%~f0" %*
-goto exit
-
-"""
-# -------------------- Python section --------------------
-import sys
-from pylint import gui
-gui.Run(sys.argv[1:])
-
-
-DosExitLabel = """
-:exit
-rem """
-
-
+rem Use python to execute the python script having the same name as this batch
+rem file, but without any extension, located in the same directory as this
+rem batch file
+python "%~dpn0" %*
diff --git a/bin/pylint.bat b/bin/pylint.bat
index 3239fc5c2..88e566ba0 100644
--- a/bin/pylint.bat
+++ b/bin/pylint.bat
@@ -1,20 +1,5 @@
@echo off
-rem = """-*-Python-*- script
-rem -------------------- DOS section --------------------
-rem You could set PYTHONPATH or TK environment variables here
-python -x "%~f0" %*
-goto exit
-
-"""
-# -------------------- Python section --------------------
-import sys
-from pylint import lint
-lint.Run(sys.argv[1:])
-
-
-DosExitLabel = """
-:exit
-exit(ERRORLEVEL)
-rem """
-
-
+rem Use python to execute the python script having the same name as this batch
+rem file, but without any extension, located in the same directory as this
+rem batch file
+python "%~dpn0" %*
diff --git a/bin/pyreverse.bat b/bin/pyreverse.bat
index f131302b9..81d4e186f 100644
--- a/bin/pyreverse.bat
+++ b/bin/pyreverse.bat
@@ -1,18 +1,5 @@
@echo off
-rem = """-*-Python-*- script
-@echo off
-rem -------------------- DOS section --------------------
-rem You could set PYTHONPATH or TK environment variables here
-python -x "%~f0" %*
-goto exit
-
-"""
-# -------------------- Python section --------------------
-import sys
-from pylint.pyreverse import main
-main.Run(sys.argv[1:])
-
-
-DosExitLabel = """
-:exit
-rem """
+rem Use python to execute the python script having the same name as this batch
+rem file, but without any extension, located in the same directory as this
+rem batch file
+python "%~dpn0" %*
diff --git a/bin/symilar.bat b/bin/symilar.bat
index 24e339e80..88e566ba0 100644
--- a/bin/symilar.bat
+++ b/bin/symilar.bat
@@ -1,20 +1,5 @@
@echo off
-rem = """-*-Python-*- script
-@echo off
-rem -------------------- DOS section --------------------
-rem You could set PYTHONPATH or TK environment variables here
-python -x "%~f0" %*
-goto exit
-
-"""
-# -------------------- Python section --------------------
-import sys
-from pylint.checkers import similar
-similar.run()
-
-
-DosExitLabel = """
-:exit
-rem """
-
-
+rem Use python to execute the python script having the same name as this batch
+rem file, but without any extension, located in the same directory as this
+rem batch file
+python "%~dpn0" %*