#!/bin/sh

remote="$1"
url="$2"

if [ "$remote" = 'gitlab' ] || [ "$url" = 'git@gitlab.com:flyingscorpio/SetupCockpit.git' ]; then
    exit 0
fi
echo "Pushing to Gitlab..."
git push gitlab master
exit 0