1
0
mirror of https://gitea.blesmrt.net/mikaela/scripts.git synced 2025-06-05 06:27:38 +02:00
2022-05-18 15:46:00 +03:00

18 lines
231 B
Bash
Executable File

#!/usr/bin/env bash
# Using the snap version of go if available
set -x
# Check if go is installed through snap
if [ -f /snap/bin/go ]
then
snap run go $@
# Fallback to system installation
else
/usr/bin/go $@
fi
set +x