mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-13 20:39:21 +01:00
17 lines
226 B
Bash
Executable File
17 lines
226 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
|