mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-11 13:56:44 +10:00
13 lines
227 B
Bash
Executable File
13 lines
227 B
Bash
Executable File
#!/bin/bash
|
|
. $GVM_ROOT/scripts/functions
|
|
|
|
echo "
|
|
gvm gos (available)
|
|
"
|
|
curl -s https://go.googlecode.com/hg/.hgtags | awk '{ print $2 }'
|
|
if [[ $? -ne 0 ]]; then
|
|
display_error "Failed to get version list from Google"
|
|
fi
|
|
echo
|
|
|