#! /bin/bash

if command -v frzr-deploy > /dev/null; then
	if [ "$1" == "check" ]; then
		frzr-deploy --check
	elif [ "$1" == "--supports-duplicate-detection" ]; then
		exit 0
	else
		frzr-deploy --steam-progress
	fi
else
    exit 7
fi
