Skip to content

Commit

Permalink
git checkout -- . (v3.2.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaina authored Jan 21, 2024
1 parent b01ee6e commit 6db958e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ For Misskey v13 production and later RC (since 13.0.0-rc.10)

The English version is available at https://github.com/joinmisskey/bash-install/releases .

## v3.2.2
- nginxのアップロードの上限を80mから250mにしました。
- アップデートスクリプトで、`git pull`の前に`git checkout -- .`するようにしました。

## v3.2.1
Node.jsのダウンロード元(nodesource提供)が変更になりました。

Expand Down
3 changes: 2 additions & 1 deletion README.en.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Misskey install shell script v3.2.1
# Misskey install shell script v3.2.2
Install Misskey with one shell script!

You can install misskey on an Ubuntu server just by answering some questions.
Expand Down Expand Up @@ -48,6 +48,7 @@ The update script does not update the environment.
Please refer to CHANGELOG (Japanese) and [GitHub release list (English)](https://github.com/joinmisskey/bash-install/releases) and perform migration operations accordingly.

First, download the script.
If there is an update of the update script, please wget it again.

```
wget https://raw.githubusercontent.com/joinmisskey/bash-install/main/update.ubuntu.sh -O update.sh
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Misskey install shell script v3.2.1
# Misskey install shell script v3.2.2

Misskeyを簡単にインストールするためのシェルスクリプトができました!

Expand Down Expand Up @@ -56,7 +56,7 @@ example.comは自分のドメインに置き換えてください。

アップデートスクリプトは、環境のアップデートは行いません。CHANGELOG(日本語)および[GitHubのリリース一覧(英語)](https://github.com/joinmisskey/bash-install/releases)を参考に、適宜マイグレーション操作を行なってください。

まずはダウンロードします。
まずはダウンロードします。アップデートスクリプトのアップデートがあった場合、wgetしなおしてください。

```
wget https://raw.githubusercontent.com/joinmisskey/bash-install/main/update.ubuntu.sh -O update.sh
Expand Down
1 change: 1 addition & 0 deletions update.ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ cd ~/$misskey_directory;
tput setaf 3;
echo "Process: git pull;";
tput setaf 7;
git checkout -- .;
git pull;
git submodule update --init;
MKEOF
Expand Down

0 comments on commit 6db958e

Please sign in to comment.