Skip to content

Commit

Permalink
Merge pull request #1381 from vektor-inc/env/deploy-free-code
Browse files Browse the repository at this point in the history
@kurudrive 確認待ち】無料版デプロイ時 incなどのフォルダも削除してからコミットしたい
  • Loading branch information
kurudrive authored Aug 23, 2022
2 parents aa31a2d + 89663ff commit 959b510
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bin/deploy-free.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@ version=$1
mv vk-blocks/ vk-blocks-copy-target/
# Cloneした無料版のディレクトリに移動
cd ./vk-blocks-copy-target/
# コピー先の src/ を一旦削除
rm -rf src/*
# コピー先の トップディレクトリ を一旦削除
rm -rf editor-css/* inc/* lib/* options-css/* src/*

# プロ版のディレクトリに移動
cd ../
# 指定したファイルを除外して、Pro版を無料版(vk-blocks-copy-target)へコピー&上書き
# -a : archive -rlptgoDとイコール
# -r : 指定ディレクトリ配下をすべて対象
# -v : コピーファイルの転送情報を出力
# -c : チェックサムで差分を確認
rsync -arvc --exclude 'vk-blocks-copy-target/' --exclude 'vendor/' --exclude 'bin/' --exclude 'build/_pro/' --exclude 'src/blocks/_pro/' --exclude 'inc/vk-blocks-pro/' --exclude '.git/' --exclude '.github/' --exclude 'build/block-build.css' --exclude 'inc/vk-blocks-pro-config.php' --exclude 'src/blocks/bundle-pro.js' --exclude '.gitignore' --exclude 'build/*.css' --exclude 'build/*.js' --exclude 'editor-css/*.css' --exclude 'editor-css/*.css.map' --exclude 'vk-blocks-pro.code-workspace' --exclude 'phpunit.xml.dist' ./* ./vk-blocks-copy-target/

# 無料版のディレクトリに移動
Expand Down

0 comments on commit 959b510

Please sign in to comment.