Skip to content

Commit

Permalink
Merge pull request #171 from cploutarchou/168-bug-remove-page-prefix-…
Browse files Browse the repository at this point in the history
…for-go-templates

168 bug remove page prefix for go templates
  • Loading branch information
cploutarchou authored Mar 5, 2023
2 parents 7145260 + 6264d99 commit 90c48ee
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ require (
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/containerd/containerd v1.6.16 // indirect
github.com/containerd/containerd v1.6.18 // indirect
github.com/containerd/continuity v0.3.0 // indirect
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/docker/cli v20.10.8+incompatible // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ github.com/containerd/containerd v1.5.1/go.mod h1:0DOxVqwDy2iZvrZp2JUx/E+hS0UNTV
github.com/containerd/containerd v1.5.7/go.mod h1:gyvv6+ugqY25TiXxcZC3L5yOeYgEw0QMhscqVp1AR9c=
github.com/containerd/containerd v1.5.8/go.mod h1:YdFSv5bTFLpG2HIYmfqDpSYYTDX+mc5qtSuYx1YUb/s=
github.com/containerd/containerd v1.6.1/go.mod h1:1nJz5xCZPusx6jJU8Frfct988y0NpumIq9ODB0kLtoE=
github.com/containerd/containerd v1.6.16 h1:0H5xH6ABsN7XTrxIAKxFpBkFCBtrZ/OSORhCpUnHjrc=
github.com/containerd/containerd v1.6.16/go.mod h1:1RdCUu95+gc2v9t3IL+zIlpClSmew7/0YS8O5eQZrOw=
github.com/containerd/containerd v1.6.18 h1:qZbsLvmyu+Vlty0/Ex5xc0z2YtKpIsb5n45mAMI+2Ns=
github.com/containerd/containerd v1.6.18/go.mod h1:1RdCUu95+gc2v9t3IL+zIlpClSmew7/0YS8O5eQZrOw=
github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y=
github.com/containerd/continuity v0.0.0-20190815185530-f2a389ac0a02/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y=
github.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y=
Expand Down
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ echo " | |\ /| | [ | / /'\`\\] [ \`/'\`\\ ] / .'\`\\ \ | | ____ | | |
echo " _| |_\/_| |_ | | | \\__. | | | \\__. | \\ \`\.___] | \\ \`-' / "
echo "|_____||_____| [___] '.___.' [___] '.__.' \`._____.' \`.___.' "
echo ""
echo "v1.0.7a"
echo "v1.0.8"
echo "Author: Christos Ploutarchou"
echo "Installing MicroGO binaries..."
userDir=$USER
Expand All @@ -30,11 +30,11 @@ spinner() {

if [[ "$OSTYPE" == "darwin"* ]]; then
if [[ $(uname -m) == "x86_64" ]]; then
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.7a/microGo-MacOS-x86_64 &
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.8/microGo-MacOS-x86_64 &
spinner $!
mv microGo-MacOS-x86_64 /Users/"$userDir"/go/bin/microGo
else
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.7a/microGo-MacOS-ARM64 &
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.8/microGo-MacOS-ARM64 &
spinner $!
mv microGo-MacOS-ARM64 /Users/"$userDir"/go/bin/microGo
fi
Expand All @@ -58,11 +58,11 @@ if [[ "$OSTYPE" == "darwin"* ]]; then

elif [[ "$OSTYPE" == "linux-gnu" ]]; then
if [[ $(uname -m) == "x86_64" ]]; then
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.7a/microGo-Linux-x86_64 &
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.8/microGo-Linux-x86_64 &
spinner $!
mv microGo-Linux-x86_64 ~/go/bin/microGo
else
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.7a/microGo-Linux-ARM64 &
curl -LJO https://github.com/cploutarchou/MicroGO/releases/download/v1.0.8/microGo-Linux-ARM64 &
spinner $!
mv microGo-Linux-ARM64 ~/go/bin/microGo
fi
Expand Down
2 changes: 1 addition & 1 deletion terminal/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/fatih/color"
)

const version = "1.0.7a"
const version = "1.0.8"

var micro microGo.MicroGo

Expand Down

0 comments on commit 90c48ee

Please sign in to comment.