diff options
| author | Rafael Laboissiere <rafael@laboissiere.net> | 2015-11-11 14:20:27 -0200 |
|---|---|---|
| committer | Rafael Laboissiere <rafael@laboissiere.net> | 2015-11-11 14:20:27 -0200 |
| commit | 1bf4625e50c2ad051f9458064f8cff4dc5662f0c (patch) | |
| tree | af3a7856691e63cb721d999718af8712dae8d155 /repo/bin | |
| parent | a2c1d7586c7cf4c8b49926d2a84c076c1990cbb0 (diff) | |
Include only binary pacakges in the repo
Diffstat (limited to 'repo/bin')
| -rwxr-xr-x | repo/bin/add-pkg.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/repo/bin/add-pkg.sh b/repo/bin/add-pkg.sh index 5c1b47c..7553f7d 100755 --- a/repo/bin/add-pkg.sh +++ b/repo/bin/add-pkg.sh @@ -3,11 +3,11 @@ prog=${0##*/} if [ $# != 2 ] ; then - echo "Usage: $prog dist pkg.changes" >&2 + echo "Usage: $prog dist pkg.deb" >&2 exit 1 fi dist=$1 -chg=$(readlink -f $2) +deb=$(readlink -f $2) -reprepro include $dist $chg +reprepro includedeb $dist $deb |
