mirror of
https://github.com/sbrl/PolyFeed.git
synced 2024-11-24 06:43:01 +00:00
Bugfix: Correctly locate .deb files for upload
This commit is contained in:
parent
a6ca7928c1
commit
18b25c6dc4
1 changed files with 2 additions and 1 deletions
3
build
3
build
|
@ -117,7 +117,8 @@ SFTPCOMMANDS
|
|||
|
||||
task_upload-release() {
|
||||
task_begin "Uploading release .deb file(s)";
|
||||
_upload_deb "$(ls -ct *.deb | head -n1)";
|
||||
# We grab from ARCHIVE here, as we expect that only archived .deb files are final & stable.
|
||||
_upload_deb "$(ls -ct "${ARCHIVE}/*.deb" | head -n1)";
|
||||
task_end $?;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue