#!/bin/bash

# Intended to run on a Mac and download the current version of the
# install.sh script and then source it, to avoid having to do that from
# the browser and dealing with cache issues and such.

file='install-pyopengl.sh'
dest="$HOME/Desktop/$file"

if [ -e $dest ]; then
    rm $dest
fi
curl --silent http://cs.wellesley.edu/~cs307/pyopengl/$file -o $dest
source $dest


