File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
builds/install/arch-specific/win32 Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11@ echo off
2- if " %1 " == " " (
2+ if " %~ 1 " == " " (
33instreg install -z
44)
55setlocal
66set INSTALL_SERVICE = install -z
77set START_SERVICE = start
8- if not " %1 " == " " (
8+ if not " %~ 1 " == " " (
99set INSTALL_SERVICE = %INSTALL_SERVICE% -n %1
1010set START_SERVICE = %START_SERVICE% -n %1
1111)
1212instsvc %INSTALL_SERVICE%
1313instsvc %START_SERVICE%
1414endlocal
1515@ echo .
16- @ echo Firebird installed and started as a service using
16+ @ echo Firebird installed and started as a service using
1717@ echo architecture specified in firebird.conf.
1818@ echo .
1919
Original file line number Diff line number Diff line change 22setlocal
33set REMOVE_SERVICE = remove -z
44set STOP_SERVICE = stop
5- if not " %1 " == " " (
5+ if not " %~ 1 " == " " (
66set STOP_SERVICE = %STOP_SERVICE% -n %1
77set REMOVE_SERVICE = %REMOVE_SERVICE% -n %1
88)
99instsvc %STOP_SERVICE%
1010instsvc %REMOVE_SERVICE%
1111endlocal
1212
13- if " %1 " == " " (instreg remove -z)
13+ if " %~ 1 " == " " (instreg remove -z)
You can’t perform that action at this time.
0 commit comments