AdventOfCode2020/run.sh

8 lines
91 B
Bash
Executable File

#!/bin/bash
if [ "${1}" != "" ]; then
cd ${1}
go run *.go
cd - > /dev/null
fi