Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
drill-lancer committed Jun 10, 2024
1 parent e7515a3 commit f91697f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/install-theme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ set -ex
# -o 実行結果をファイルへ出力
# -s ファイル出力時の進捗状況を非表示にする(エラーも非表示)
# curl -s $WP_THEME -o theme.zip
curl -s https://downloads.wordpress.org/theme/lightning.zip -o theme.zip
curl -sL https://downloads.wordpress.org/theme/lightning.zip -o theme.zip
# -d 指定したディレクトリに展開
mkdir ./temp/
rm -rf temp/themes
mkdir -p temp
mkdir -p temp/themes
unzip theme.zip -d ./temp/themes
# 展開したのでもとのzipファイルを削除 -f はエラーメッセージを表示しない
rm -f theme.zip

0 comments on commit f91697f

Please sign in to comment.