teamdable / vv-deploy-actions

1 stars 0 forks source link

여러파일을 zip --delete 할 수 있도록 수정 #74

Closed hyeseung-of-dable closed 2 years ago

hyeseung-of-dable commented 2 years ago

https://www.notion.so/dableglobal/2022-5-dev-50e68dbaaa9645eea815ccd0e231b984#443eb1882c2d4e8389523d4e8fb65d5a

hyeseung-of-dable commented 2 years ago
for file in $exclude_files_from_zip
do
    echo $file
    if [[ -e $file ]] || [[ -d $file ]]
    then
        zip --delete $zip_file_name $file
    fi
done
sunghyunl22 commented 2 years ago

@hyeseung-of-dable 테스트 해보니 잘 됩니다! 적용해주시면 될것같아요 감사합니다!