From e04c248bca965f4dbc80ac09cf8e07822f3498c6 Mon Sep 17 00:00:00 2001 From: Changsu Im Date: Tue, 30 Mar 2021 23:39:35 +0900 Subject: [PATCH] Fix: repository name --- .goreleaser.yml | 2 +- Makefile | 2 +- docs/templates.md | 2 +- scripts/docker.ps1 | 2 +- scripts/docker.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 7e9a788..b40c01a 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -26,7 +26,7 @@ builds: # - 386 # - arm64 ldflags: - - -s -w -extldflags='-static' -X github.com/cxsu/swage/pkg/cmd.swageVersion={{ .Tag }} + - -s -w -extldflags='-static' -X github.com/markruler/swage/pkg/cmd.swageVersion={{ .Tag }} archives: - replacements: diff --git a/Makefile b/Makefile index 43184b3..0e99fa6 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ VERSION := $(file < ./VERSION) .DEFAULT_GOAL := all MAKEFLAGS += --warn-undefined-variables # go tool link (https://golang.org/cmd/link/) -LDFLAGS := -s -w -extldflags='-static' -X 'github.com/cxsu/swage/pkg/cmd.swageVersion=${VERSION}' +LDFLAGS := -s -w -extldflags='-static' -X 'github.com/markruler/swage/pkg/cmd.swageVersion=${VERSION}' all: version deps test cover build .PHONY: all diff --git a/docs/templates.md b/docs/templates.md index 38d8458..e19bcb9 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -1,6 +1,6 @@ # Templates -## default template ([pkg/excel](https://github.com/cxsu/swage/tree/main/pkg/excel)) +## default template ([pkg/excel](https://github.com/markruler/swage/tree/main/pkg/excel)) - Index worksheet diff --git a/scripts/docker.ps1 b/scripts/docker.ps1 index 6039ae8..85bc51d 100644 --- a/scripts/docker.ps1 +++ b/scripts/docker.ps1 @@ -1,6 +1,6 @@ Set-Variable -Name "BINARY" -Value "swage" Set-Variable -Name "IMAGE" -Value "swage" -Set-Variable -Name "REPO" -Value "cxsu" +Set-Variable -Name "REPO" -Value "markruler" Set-Variable -Name "REPO_PORT" -Value "" Set-Variable -Name "VERSION" -Value $(Get-Content -Path ./VERSION) diff --git a/scripts/docker.sh b/scripts/docker.sh index a3d4cf1..8b836d8 100644 --- a/scripts/docker.sh +++ b/scripts/docker.sh @@ -4,7 +4,7 @@ set -e BINARY="swage" IMAGE="swage" -REPO="cxsu" +REPO="markruler" REPO_PORT="" VERSION=$(cat ./VERSION)