#!/bin/bash
if [ -z "$1" ]; then
    echo "Provide env name"
    exit 1
fi
pyenv virtualenv $@
echo "$1" > .python-version
