diff --git a/misc/weird_stuff/dos2unix_all.bat b/misc/weird_stuff/dos2unix_all.bat deleted file mode 100644 index 8c416e91a9..0000000000 --- a/misc/weird_stuff/dos2unix_all.bat +++ /dev/null @@ -1,4 +0,0 @@ -cd .. - -rem manually copy find.exe from cygwin to find_cygwin to avoid conflict with systen32/find -find_cygwin . -type f -print0 | xargs -0 dos2unix \ No newline at end of file diff --git a/misc/weird_stuff/dos2unix_all_job.bat b/misc/weird_stuff/dos2unix_all_job.bat deleted file mode 100644 index 112cc25d34..0000000000 --- a/misc/weird_stuff/dos2unix_all_job.bat +++ /dev/null @@ -1,5 +0,0 @@ -find_cygwin . -type f -print0 | xargs -0 dos2unix -git pull -call dos2unix_all.bat -git commit -m "dos2unix nightly" -git push \ No newline at end of file diff --git a/misc/weird_stuff/svn2git.bat b/misc/weird_stuff/svn2git.bat deleted file mode 100644 index a131a0209a..0000000000 --- a/misc/weird_stuff/svn2git.bat +++ /dev/null @@ -1,42 +0,0 @@ - - -echo This script should be executed from the root of rusEfi trunk SVN local copy -pwd - -echo Updating from SVN -call svn update - -set RUSEFI_GIT_PATH=../rusefi.github/rusefi - - - -ls -l %RUSEFI_GIT_PATH% -rd /s /q %RUSEFI_GIT_PATH%\firmware -rd /s /q %RUSEFI_GIT_PATH%\hardware -rd /s /q %RUSEFI_GIT_PATH%\java_console -rd /s /q %RUSEFI_GIT_PATH%\unit_tests -rd /s /q %RUSEFI_GIT_PATH%\simulator - -cp -r firmware %RUSEFI_GIT_PATH% -cp -r hardware %RUSEFI_GIT_PATH% -cp -r java_console %RUSEFI_GIT_PATH% -cp -r unit_tests %RUSEFI_GIT_PATH% -cp -r simulator %RUSEFI_GIT_PATH% -rm -f %RUSEFI_GIT_PATH%/readme.* -rm -f %RUSEFI_GIT_PATH%/README.* -cp -r README.* %RUSEFI_GIT_PATH% -cp -r readme.* %RUSEFI_GIT_PATH% - - -echo Going to git copy location - - -cd %RUSEFI_GIT_PATH% - -git config --global user.email "russianefi@gmail.com" -git config --global user.name "rusEfi" - -git pull -git add * -git commit -a -m "auto-sync" -git push --repo https://rusefi:PASSWORD@github.com/rusefi/rusefi diff --git a/misc/weird_stuff/svn2git_init.bat b/misc/weird_stuff/svn2git_init.bat deleted file mode 100644 index 904292216e..0000000000 --- a/misc/weird_stuff/svn2git_init.bat +++ /dev/null @@ -1,9 +0,0 @@ -rd /s /q c:\stuff\rusefi.svn2git - -mkdir -p c:\stuff\rusefi.svn2git\rusefi.svn -cd c:\stuff\rusefi.svn2git\rusefi.svn -svn co https://svn.code.sf.net/p/rusefi/code/trunk/ . - -mkdir -p c:\stuff\rusefi.svn2git\rusefi.github -cd c:\stuff\rusefi.svn2git\rusefi.github -git clone https://github.com/rusefi/rusefi.git