blob: 608ea05659b8683edc4951b1edf22c12ff53466f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@echo off
cd ..\..\
SET PATH=.\Installer\u3portable\Host
xcopy .\Covers\*.* %PATH% /Y /T /E
xcopy .\Languages\*.* %PATH% /Y /T /E
xcopy .\Plugins\*.* %PATH% /Y /T /E
xcopy .\Skins\*.* %PATH% /Y /T /E
xcopy .\Sounds\*.* %PATH% /Y /T /E
xcopy .\Themes\*.* %PATH% /Y /T /E
xcopy .\Covers\*.* %PATH% /Y /T /E
copy .\UltraStar.exe %PATH% /Y /T /E
xcopy .\InstallerDependencies\dll\*.* %PATH% /Y /T /E
cd .\Installer\u3portable\Host
ren UltraStar.exe USdx.exe
|