#!/bin/bash

set -e

if [[ -d $HOME/go/pkg ]]; then

    pushd $HOME/go &> /dev/null

    tar -cf - pkg

    popd &> /dev/null

fi

