Skip to content

Commit

Permalink
CSS-55 [DevOps][신규] Google Drive 업로드
Browse files Browse the repository at this point in the history
빌드 오류 수정
  • Loading branch information
autumn-na committed Mar 22, 2024
1 parent 009fc3a commit e9733e2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Jenkins/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ $SourceFile = $ZipPath
# Get the source file contents and details, encode in base64
$SourceItem = Get-Item $SourceFile
$SourceMime = [System.Web.MimeMapping]::GetMimeMapping($SourceItem.FullName)
$FileStream = New-Object System.IO.FileStream($SourceItem.FullName, [System.IO.FileMode]::Open)
$BinaryReader = New-Object System.IO.BinaryReader($FileStream)
$Base64Transform = New-Object System.Security.Cryptography.ToBase64Transform

try {
$BlockSize = $Base64Transform.InputBlockSize * 4
Expand Down

0 comments on commit e9733e2

Please sign in to comment.