Skip to content

Commit

Permalink
vssio から veltiosoft に renameする
Browse files Browse the repository at this point in the history
  • Loading branch information
zztkm committed Sep 23, 2024
1 parent 02f9991 commit 48eadbc
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023-2024 vssio
Copyright (c) 2023-2024 veltiosoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BIN := vss
VERSION := $$(make -s show-version)
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS := "-s -w -X github.com/vssio/go-vss.revision=$(CURRENT_REVISION)"
BUILD_LDFLAGS := "-s -w -X github.com/veltiosoft/go-vss.revision=$(CURRENT_REVISION)"
GOBIN ?= $(shell go env GOPATH)/bin

.PHONY: tag
Expand Down
10 changes: 5 additions & 5 deletions assets/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A static site generator.

![vss-logo](./image.gif)

- [GitHub](https://github.com/vssio/go-vss)
- [GitHub](https://github.com/veltiosoft/go-vss)

## Features

Expand All @@ -20,22 +20,22 @@ For Mac & Linux

latest version
```sh
curl -sfL https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.sh
curl -sfL https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.sh
```

specific version
```sh
curl -sfL https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.sh | sh -s v0.0.1
curl -sfL https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.sh | sh -s v0.0.1
```

For Windows (with PowerShell)
```powershell
irm https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.ps1 | iex
irm https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.ps1 | iex
```

specific version
```powershell
$v="v0.0.1"; irm https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.ps1 | iex
$v="v0.0.1"; irm https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.ps1 | iex
```

## Contents
Expand Down
2 changes: 1 addition & 1 deletion cmd/vss/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/vssio/go-vss"
"github.com/veltiosoft/go-vss"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/vssio/go-vss
module github.com/veltiosoft/go-vss

go 1.22

Expand Down
4 changes: 2 additions & 2 deletions scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ $vssExe = "$BinDir\vss.exe"
$Target = "windows_amd64"

$DownloadUrl = if (!$Version) {
"https://github.com/vssio/go-vss/releases/latest/download/vss_${Target}.zip"
"https://github.com/veltiosoft/go-vss/releases/latest/download/vss_${Target}.zip"
} else {
"https://github.com/vssio/go-vss/releases/download/${Version}/vss_${Target}.zip"
"https://github.com/veltiosoft/go-vss/releases/download/${Version}/vss_${Target}.zip"
}

# print the download url
Expand Down
10 changes: 5 additions & 5 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ fi
if [ "$OS" = "Windows_NT" ]; then
target="windows_amd64"
if ! command -v unzip >/dev/null; then
echo "Error: unzip is required to install vss.exe (see: https://github.com/vssio/vss_install#unzip-is-required)." 1>&2
echo "Error: unzip is required to install vss.exe (see: https://github.com/veltiosoft/vss_install#unzip-is-required)." 1>&2
exit 1
fi
if [ $# -eq 0 ]; then
vss_uri="https://github.com/vssio/go-vss/releases/latest/download/vss_${target}.zip"
vss_uri="https://github.com/veltiosoft/go-vss/releases/latest/download/vss_${target}.zip"
else
vss_uri="https://github.com/vssio/go-vss/releases/download/${1}/vss_${target}.zip"
vss_uri="https://github.com/veltiosoft/go-vss/releases/download/${1}/vss_${target}.zip"
fi
else
case $(uname -sm) in
Expand All @@ -48,9 +48,9 @@ else
*) target="linux_amd64" ;;
esac
if [ $# -eq 0 ]; then
vss_uri="https://github.com/vssio/go-vss/releases/latest/download/vss_${target}.${ext}"
vss_uri="https://github.com/veltiosoft/go-vss/releases/latest/download/vss_${target}.${ext}"
else
vss_uri="https://github.com/vssio/go-vss/releases/download/${1}/vss_${target}.${ext}"
vss_uri="https://github.com/veltiosoft/go-vss/releases/download/${1}/vss_${target}.${ext}"
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion self_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

const (
latestReleaseUrl = "https://github.com/vssio/go-vss/releases/latest/download"
latestReleaseUrl = "https://github.com/veltiosoft/go-vss/releases/latest/download"
exe = "vss"
)

Expand Down
10 changes: 5 additions & 5 deletions site/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A static site generator.

![vss-logo](./image.gif)

- [GitHub](https://github.com/vssio/go-vss)
- [GitHub](https://github.com/veltiosoft/go-vss)

## Features

Expand All @@ -20,22 +20,22 @@ For Mac & Linux

latest version
```sh
curl -sfL https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.sh | sh
curl -sfL https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.sh | sh
```

specific version
```sh
curl -sfL https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.sh | sh -s v0.0.1
curl -sfL https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.sh | sh -s v0.0.1
```

For Windows (with PowerShell)
```powershell
irm https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.ps1 | iex
irm https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.ps1 | iex
```

specific version
```powershell
$v="v0.0.1"; irm https://raw.githubusercontent.com/vssio/go-vss/main/scripts/install.ps1 | iex
$v="v0.0.1"; irm https://raw.githubusercontent.com/veltiosoft/go-vss/main/scripts/install.ps1 | iex
```

## Contents
Expand Down

0 comments on commit 48eadbc

Please sign in to comment.