From 8864ae120698c6badf1cbe263fadadd533fafd2e Mon Sep 17 00:00:00 2001 From: Mitsuru Mutaguchi Date: Mon, 21 Apr 2025 15:15:50 +0900 Subject: [PATCH] =?UTF-8?q?change:=20sync=5Foption=5Fprivate=5F2=5Fdev.sh,?= =?UTF-8?q?=20rsync=E3=81=AE=E3=82=AA=E3=83=97=E3=82=B7=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E8=A6=8B=E7=9B=B4=E3=81=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sync_option_private_2_dev.sh.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sync_option_private_2_dev.sh.example b/sync_option_private_2_dev.sh.example index 7f78acb93..1cdc5b7a2 100644 --- a/sync_option_private_2_dev.sh.example +++ b/sync_option_private_2_dev.sh.example @@ -35,17 +35,17 @@ rsync -arvz --delete "${src_root_dir}${option_plugin}/resources/views/plugins_op # バッチ rsync -arvz --delete "${src_root_dir}${option_plugin}/app/Console/CommandsOption/${option_plugin_command_dir}" "${dist_root_dir}app/Console/CommandsOption/" # マイグレーション -rsync -arvz --delete --exclude '_readme.txt' "${src_root_dir}${option_plugin}/database/migrations_option" "${dist_root_dir}database/" +rsync -arvz --exclude '_readme.txt' "${src_root_dir}${option_plugin}/database/migrations_option" "${dist_root_dir}database/" # シーダー rsync -arvz "${src_root_dir}${option_plugin}/database/seeders/Options/${option_plugin}" "${dist_root_dir}database/seeders/Options/" # Enum -rsync -arvz --delete "${src_root_dir}${option_plugin}/app/EnumsOption" "${dist_root_dir}app/" +rsync -arvz "${src_root_dir}${option_plugin}/app/EnumsOption" "${dist_root_dir}app/" # 画像 rsync -arvz --delete "${src_root_dir}${option_plugin}/public/images/plugins/${option_plugin_resources_dir}" "${dist_root_dir}public/images/plugins/" # メールテンプレート rsync -arvz --delete "${src_root_dir}${option_plugin}/resources/views/mail_option/${option_plugin_resources_dir}" "${dist_root_dir}resources/views/mail_option/" # バリデーション -rsync -arvz --delete "${src_root_dir}${option_plugin}/app/RulesOption/${option_plugin}" "${dist_root_dir}${option_plugin}/app/RulesOption/" +rsync -arvz --delete "${src_root_dir}${option_plugin}/app/RulesOption/${option_plugin}" "${dist_root_dir}app/RulesOption/" # Composer Option cp -f "${src_root_dir}composer-option.json" "${dist_root_dir}" cp -f "${src_root_dir}composer-option.lock" "${dist_root_dir}"