alpmver 0.1.3

A simple crate to compare package Pacman package versions
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

RES1=$($SCRIPTDIR/target/release/alpmver "$@")
RES2=$($SCRIPTDIR/calpmver "$@")

if [ "$RES1" != "$RES2" ]
then
	exit 1;
fi