Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Internet1235 authored Nov 26, 2024
1 parent a8eb2eb commit c65b6b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/OpenSSL-Build For Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Clone source code
run: |
git clone ${{ env.REPO_URL }} -b ${{ env.REPO_BRANCH }}
git clone ${{ env.REPO_URL }} -b $REPO_BRANCH
- name: Create x64 and x32 Folder
run: |
Expand Down
8 changes: 4 additions & 4 deletions windows-installer/openssl.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ SectionGroupEnd
SectionGroup "32 Bit Installation"
Section "32 Bit Binaries"
SetOutPath $INSTDIR\x86\lib
File /r "${BUILD32}\Program Files (x86)\OpenSSL\lib\"
File /r "${BUILD32}\lib\"
SetOutPath $INSTDIR\x86\bin
File /r "${BUILD32}\Program Files (x86)\OpenSSL\bin\"
File /r "${BUILD32}\bin\"
SetOutPath "$INSTDIR\x86\Common Files"
File /r "${BUILD32}\Program Files (x86)\Common Files\"
File /r "${BUILD32}\Common Files\"
SectionEnd
Section "x86 Development Headers"
SetOutPath $INSTDIR\x86\include
File /r "${BUILD32}\Program Files (x86)\OpenSSL\include\"
File /r "${BUILD32}\include\"
SectionEnd
SectionGroupEnd
!endif
Expand Down

0 comments on commit c65b6b1

Please sign in to comment.