mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
b7d91e2f33
This avoids needing to rename them ourselves (which is kinda annoying) and also avoids mistakes in the process.
5 lines
178 B
Bash
Executable File
5 lines
178 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Extract the version string from the source code, to be stored in a variable.
|
|
grep 'const version' goenv/version.go | sed 's/^const version = "\(.*\)"$/version=\1/g'
|