Changeset 29706


Ignore:
Timestamp:
2015-02-03T10:01:29+13:00 (9 years ago)
Author:
Jeremy Symon
Message:

Fixed testing for dependencies

Location:
main/trunk/package-kits/linux/repos
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/package-kits/linux/repos/apt

    r29700 r29706  
    88        exit 1
    99    }
    10     test -x `which reprepro` || {
     10    which reprepro || {
    1111        echo "Must install reprepro to add packages" >&2
    1212        exit 1
  • main/trunk/package-kits/linux/repos/pacman

    r29704 r29706  
    1212        exit 1
    1313    }
    14     test -x `which repo-add` || {
     14    which repo-add || {
    1515        echo "Must install repo-add to manage pacman packages" >&2
    1616        exit 1
  • main/trunk/package-kits/linux/repos/rpm

    r29705 r29706  
    1212        exit 1
    1313    }
    14     test -x `which createrepo` || {
     14    which createrepo || {
    1515        echo "Must install createrepo to manage rpm packages" >&2
    1616        exit 1
    1717    }
    18     test -x `which rpmsign` || {
     18    which rpmsign || {
    1919        echo "Must install rpmsign to sign rpm packages" >&2
    2020        exit 1
Note: See TracChangeset for help on using the changeset viewer.