[DEVELOPMENT ENVIRONMENT]

* BUG: Fix ArchLinux package creation when the destination directory has 
  spaces.


git-svn-id: svn://localhost/gambas/trunk@4595 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2012-04-04 22:58:01 +00:00
parent 5ceb805711
commit 11ab83e531

View file

@ -1544,7 +1544,7 @@ Private Function MakeArchPackage(sSys As String)
RunCommand(sCmd, sBuildDir)
Next
RunCommand("cp " & String.LCase$($sName) & "-" & $sVersion & "-1*.tar.* " & Path &/ "", sBuildDir)
RunCommand("cp " & String.LCase$($sName) & "-" & $sVersion & "-1*.tar.* " & Shell$(Path) &/ "", sBuildDir)
' Remove build dir
Shell "rm -rf " & Shell(sBuildDir) Wait