Skip to content

Commit

Permalink
Assume the .changes file always gets generated
Browse files Browse the repository at this point in the history
  • Loading branch information
jtdor committed Jan 24, 2023
1 parent 23b209c commit 1d4147b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/move_artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ while read -r l; do
mv_artifact "$artifact" "$INPUT_ARTIFACTS_DIR"
case "$artifact" in
*.buildinfo)
mv_source_package "${artifact%.buildinfo}.changes"
mv_other_artifact "$artifact" .changes "$INPUT_ARTIFACTS_DIR"
changes_file=${artifact%.buildinfo}.changes
mv_source_package "$changes_file"
mv_artifact "$changes_file" "$INPUT_ARTIFACTS_DIR"
;;
esac
done < "$INPUT_SOURCE_DIR/debian/files"

0 comments on commit 1d4147b

Please sign in to comment.