Skip to content

Commit 6db958e

Browse files
authored
git checkout -- . (v3.2.2)
1 parent b01ee6e commit 6db958e

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ For Misskey v13 production and later RC (since 13.0.0-rc.10)
33

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

6+
## v3.2.2
7+
- nginxのアップロードの上限を80mから250mにしました。
8+
- アップデートスクリプトで、`git pull`の前に`git checkout -- .`するようにしました。
9+
610
## v3.2.1
711
Node.jsのダウンロード元(nodesource提供)が変更になりました。
812

README.en.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Misskey install shell script v3.2.1
1+
# Misskey install shell script v3.2.2
22
Install Misskey with one shell script!
33

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

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

5253
```
5354
wget https://raw.githubusercontent.com/joinmisskey/bash-install/main/update.ubuntu.sh -O update.sh

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Misskey install shell script v3.2.1
1+
# Misskey install shell script v3.2.2
22

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

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

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

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

6161
```
6262
wget https://raw.githubusercontent.com/joinmisskey/bash-install/main/update.ubuntu.sh -O update.sh

update.ubuntu.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ cd ~/$misskey_directory;
7171
tput setaf 3;
7272
echo "Process: git pull;";
7373
tput setaf 7;
74+
git checkout -- .;
7475
git pull;
7576
git submodule update --init;
7677
MKEOF

0 commit comments

Comments
 (0)