summaryrefslogtreecommitdiff
path: root/os/os2/installer/remove_nosound.cmd
blob: 6959fbf29c4f62c771b94e6502341d2939188dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
if "%1" == "" goto err

echo Removing NoSound...

del %1\data\nosound\*.* /n
rmdir %1\data\nosound

echo NoSound has been removed.
goto end

:err
echo This batch file is only intended for use by the OpenTTD installer.

:end