diff options
author | mösi <mösi@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-07-09 16:28:05 +0000 |
---|---|---|
committer | mösi <mösi@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2009-07-09 16:28:05 +0000 |
commit | 78abd5fd98bbdd457e017f8acc316c0fd22eff80 (patch) | |
tree | 77637cf845581aac3835ca62d2dc504e7f8e51f0 /windows/neo-vars/src | |
parent | c6140740c3e6a85419b92220557c2bdb0e82c051 (diff) |
grmpf … die Sache mit der inkludierten custom.ahk ist auf meinem Mist gewachsen. der CMD.EXE-Befehl REN erlaubt nicht die Angabe von Laufwerk und Pfad für das Ziel. Warum das bisher nicht aufgefallen ist (ein Syntaxfehler wird sowieso ausgegeben), ist mir nicht klar.
git-svn-id: https://svn.neo-layout.org@1923 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/neo-vars/src')
-rw-r--r-- | windows/neo-vars/src/make-build.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/neo-vars/src/make-build.bat b/windows/neo-vars/src/make-build.bat index 1afffc3..0e7887d 100644 --- a/windows/neo-vars/src/make-build.bat +++ b/windows/neo-vars/src/make-build.bat @@ -41,14 +41,14 @@ del "%outdir%\neo20-r*.exe" 2> nul set fnahk=%srcdir%\neo20-all.ahk
if exist "%customahk%" (
- ren "%customahk%" "%customahkbuild%"
+ move "%customahk%" "%customahkbuild%"
)
echo Compiling the new Driver using Autohotkey
"%Ahk2Exe%" /in "%fnahk%" /out "%fnexe%" /icon "%srcdir%\neo_enabled.ico"
if exist "%customahkbuild%" (
- ren "%customahkbuild%" "%customahk%"
+ move "%customahkbuild%" "%customahk%"
)
echo Driver Update complete! You can now close this log-window.
|