alpmver 0.1.3

A simple crate to compare package Pacman package versions
Documentation
#!/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