diff options
author | WiSo <wiso@xbmc.org> | 2011-03-27 20:50:20 +0200 |
---|---|---|
committer | WiSo <wiso@xbmc.org> | 2011-03-27 20:50:20 +0200 |
commit | 308c5988ad165c4c80da077c45b8e196bcd89cf4 (patch) | |
tree | 7a4ec6b6365644a4732eaadfca19bb3166ce9495 | |
parent | f66909fd46fdba604385d1e9059e71b4fa1936b8 (diff) |
[WIN32] check if paplayer directory exist and if not create it
-rw-r--r-- | project/BuildDependencies/scripts/copy_deps_d.bat | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/project/BuildDependencies/scripts/copy_deps_d.bat b/project/BuildDependencies/scripts/copy_deps_d.bat index 3539b5f234..1cf2dec120 100644 --- a/project/BuildDependencies/scripts/copy_deps_d.bat +++ b/project/BuildDependencies/scripts/copy_deps_d.bat @@ -10,4 +10,7 @@ echo .svn>py_exclude.txt echo test>>py_exclude.txt echo plat->>py_exclude.txt xcopy "%XBMC_PATH%\lib\Python\Lib" "%XBMC_PATH%\system\python\Lib" /E /Q /I /Y /EXCLUDE:py_exclude.txt > NUL -del py_exclude.txt
\ No newline at end of file +del py_exclude.txt + +rem create directories +IF NOT EXIST "%XBMC_PATH%\system\players\paplayer" md "%XBMC_PATH%\system\players\paplayer"
\ No newline at end of file |