Add rootpath to deb command to not include everything in the deb file
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2020-09-04 10:42:32 +02:00
parent 05e237560d
commit 313289d28d
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ func (Release) Deb() {
"--description", "'Vikunja is an open-source todo application, written in Go. It lets you create lists,tasks and share them via teams or directly between users.'",
"-m", "maintainers@vikunja.io",
"-p", RootPath+"/"+Executable+"-"+Version+"_amd64.deb",
"./"+BinLocation+"=/opt/vikunja/vikunja",
RootPath+"/"+BinLocation+"=/opt/vikunja/vikunja",
"./config.yml.sample=/etc/vikunja/config.yml",
)
}