From 6e1ce38eca1b8016b0cb540c3da0e3d36356a41d Mon Sep 17 00:00:00 2001 From: KishiTheMechanic Date: Mon, 26 Feb 2024 13:01:20 +0100 Subject: [PATCH] update Skeet install script version --- articles/doc/en/skeet-firestore/quickstart.md | 2 +- articles/doc/en/skeet-firestore/setup.md | 2 +- articles/doc/ja/skeet-firestore/quickstart.md | 2 +- articles/doc/ja/skeet-firestore/setup.md | 2 +- src/components/pages/home/HeroRow.tsx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/articles/doc/en/skeet-firestore/quickstart.md b/articles/doc/en/skeet-firestore/quickstart.md index 6297cd5..938c04b 100644 --- a/articles/doc/en/skeet-firestore/quickstart.md +++ b/articles/doc/en/skeet-firestore/quickstart.md @@ -17,7 +17,7 @@ If npm is not installed, you can install it with the following command. (This command installs pnpm, Java, @skeet-framework/cli and edits .profile/.zshrc.) ```bash -$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.5.0)" +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v2.0.1)" ``` ## Creating a Google Cloud Project diff --git a/articles/doc/en/skeet-firestore/setup.md b/articles/doc/en/skeet-firestore/setup.md index c290fb7..486d708 100644 --- a/articles/doc/en/skeet-firestore/setup.md +++ b/articles/doc/en/skeet-firestore/setup.md @@ -46,7 +46,7 @@ If npm is not installed, you can install it with the following command. (This command installs pnpm, Java, @skeet-framework/cli and edits .profile/.zshrc.) ```bash -$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.5.0)" +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v2.0.1)" $ npm install -g firebase-tools ``` diff --git a/articles/doc/ja/skeet-firestore/quickstart.md b/articles/doc/ja/skeet-firestore/quickstart.md index 0b4af59..01f4654 100644 --- a/articles/doc/ja/skeet-firestore/quickstart.md +++ b/articles/doc/ja/skeet-firestore/quickstart.md @@ -19,7 +19,7 @@ npm がインストールされていない場合は、以下のコマンドで (このコマンドは、pnpm, Java, @skeet-framework/cli をインストールし .profile/.zshrc を編集します。) ```bash -$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.5.0)" +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v2.0.1)" ``` ## Google Cloud Project の作成 diff --git a/articles/doc/ja/skeet-firestore/setup.md b/articles/doc/ja/skeet-firestore/setup.md index 70215a9..3f436ed 100644 --- a/articles/doc/ja/skeet-firestore/setup.md +++ b/articles/doc/ja/skeet-firestore/setup.md @@ -49,7 +49,7 @@ npm がインストールされていない場合は、以下のコマンドで (このコマンドは、pnpm, Java, @skeet-framework/cli をインストールし .profile/.zshrc を編集します。) ```bash -$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.5.0)" +$ sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v2.0.1)" $ npm install -g firebase-tools ``` diff --git a/src/components/pages/home/HeroRow.tsx b/src/components/pages/home/HeroRow.tsx index e7e5ea7..e5ae756 100644 --- a/src/components/pages/home/HeroRow.tsx +++ b/src/components/pages/home/HeroRow.tsx @@ -17,7 +17,7 @@ import { BookOpenIcon } from '@heroicons/react/24/outline' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faGithub } from '@fortawesome/free-brands-svg-icons' -const installScript = `sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v1.5.0)"` +const installScript = `sh -c "$(curl -sSfL https://storage.googleapis.com/skeet-assets/resources/install-v2.0.1)"` export default function HomeHeroRow() { const { t, i18n } = useTranslation()