Skip to content

Commit

Permalink
fix go version (2023/11/29)
Browse files Browse the repository at this point in the history
  • Loading branch information
No-Github committed Nov 29, 2023
1 parent c428c4e commit 1d24f74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions f8x
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Proxy_OK=
Docker_OK=
error=0
Linux_architecture_Name=
F8x_Version="1.7.0 Dev(2023/11/22)"
F8x_Version="1.7.0 Dev(2023/11/29)"
wget_option="-q --show-progress"

# ===================== Software version variable setting (dev) =====================
Expand All @@ -41,9 +41,9 @@ Ruby_Ver="3.0"
Ruby_Dir="ruby-3.0.0"
Ruby_bin="ruby-3.0.0.tar.gz"
# https://go.dev/dl/
Go_Version="go1.20.1"
Go_Bin_amd64="go1.20.1.linux-amd64.tar.gz"
Go_Bin_arm64="go1.20.1.linux-arm64.tar.gz"
Go_Version="go1.21.4"
Go_Bin_amd64="go1.21.4.linux-amd64.tar.gz"
Go_Bin_arm64="go1.21.4.linux-arm64.tar.gz"
# https://nodejs.org/dist/
node_Ver="v17.4.0"
node_bin_amd64="node-v17.4.0-linux-x64.tar.xz"
Expand Down Expand Up @@ -2652,7 +2652,7 @@ Go_Option(){

if [ $? == 0 ]
then
Go_Version=$(curl -L -s https://golang.org/VERSION?m=text)
Go_Version=$(curl -L -s https://golang.org/VERSION?m=text | grep -o 'go[0-9]\+\.[0-9]\+\.[0-9]\+' | awk '{print $1}')
if test -e /tmp/IS_CI
then
input="y"
Expand Down
6 changes: 3 additions & 3 deletions f8x_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Ruby_Ver="3.0"
Ruby_Dir="ruby-3.0.0"
Ruby_bin="ruby-3.0.0.tar.gz"
# https://go.dev/dl/
Go_Version="go1.20.1"
Go_Bin_amd64="go1.20.1.linux-amd64.tar.gz"
Go_Bin_arm64="go1.20.1.linux-arm64.tar.gz"
Go_Version="go1.21.4"
Go_Bin_amd64="go1.21.4.linux-amd64.tar.gz"
Go_Bin_arm64="go1.21.4.linux-arm64.tar.gz"
# https://nodejs.org/dist/
node_Ver="v17.4.0"
node_bin_amd64="node-v17.4.0-linux-x64.tar.xz"
Expand Down

0 comments on commit 1d24f74

Please sign in to comment.