Remove .bin from git files, move folder creation to script

This commit is contained in:
WeebDataHoarder
2025-04-06 02:28:03 +02:00
parent 8a8390f005
commit c763a59a4d
3 changed files with 3 additions and 2 deletions

View File

3
.gitignore vendored
View File

@@ -1,5 +1,4 @@
/tinygo
/.bin/*
/.bin
*.gz
*.br
*.zst

View File

@@ -5,6 +5,8 @@ set -o pipefail
cd "$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
mkdir -p .bin/ 2>/dev/null
# Setup tinygo first
if [[ ! -d .bin/tinygo ]]; then
git clone --depth=1 --branch v0.37.0 https://github.com/tinygo-org/tinygo.git .bin/tinygo