mirror of
https://github.com/bspeice/libcvautomation
synced 2025-01-09 15:30:05 -05:00
20 lines
588 B
Bash
20 lines
588 B
Bash
#!/bin/bash -
|
|
#===============================================================================
|
|
#
|
|
# FILE: update-packages.sh
|
|
#
|
|
# USAGE: ./update-packages.sh
|
|
#
|
|
# DESCRIPTION:
|
|
#
|
|
# OPTIONS: ---
|
|
# REQUIREMENTS: ---
|
|
# BUGS: ---
|
|
# NOTES: ---
|
|
# ORGANIZATION:
|
|
# REVISION: ---
|
|
#===============================================================================
|
|
|
|
dpkg-scanpackages libcvautomation /dev/null | gzip -9c > libcvautomation/Packages.gz
|
|
dpkg-scansources libcvautomation-source /dev/null | gzip -9c > libcvautomation-source/Sources.gz
|