Skip to content

Commit 6d224ea

Browse files
committed
v0.3.8
- Fix Windows build copy file
1 parent 97f2d3d commit 6d224ea

File tree

5 files changed

+5011
-5011
lines changed

5 files changed

+5011
-5011
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
TARGET: windows64
5050
arch: x64
5151
CMD_BUILD: >
52-
copy /y "cc2538-bsl/cc2538-bsl.py" "cc2538_bsl.py" &&
52+
powershell Copy-Item -Path "cc2538-bsl/cc2538-bsl.py" -Destination "cc2538_bsl.py" -Force &&
5353
pyinstaller -F -w -n ZigStarGW-MT -i ui/images/zigstar_tr_gl.ico --version-file ui/file_version_info.txt ZigStarGW-MT.py &&
5454
cd dist/ &&
5555
powershell Compress-Archive ZigStarGW-MT.exe ZigStarGW-MT-x64.exe.zip
@@ -59,7 +59,7 @@ jobs:
5959
TARGET: windows32
6060
arch: x86
6161
CMD_BUILD: >
62-
copy /y "cc2538-bsl/cc2538-bsl.py" "cc2538_bsl.py" &&
62+
powershell Copy-Item -Path "cc2538-bsl/cc2538-bsl.py" -Destination "cc2538_bsl.py" -Force &&
6363
pyinstaller -F -w -n ZigStarGW-MT -i ui/images/zigstar_tr_gl.ico --version-file ui/file_version_info.txt ZigStarGW-MT.py &&
6464
cd dist/ &&
6565
powershell Compress-Archive ZigStarGW-MT.exe ZigStarGW-MT-x86.exe.zip

osx.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ app = BUNDLE(exe,
4444
icon='ui/images/zigstar_tr_gl.icns',
4545
bundle_identifier=None,
4646
info_plist={
47-
'CFBundleShortVersionString': '0.3.7',
47+
'CFBundleShortVersionString': '0.3.8',
4848
'CFBundleName': 'ZigStar GW Multi tool',
4949
'NSHumanReadableCopyright': '© 2021, xyzroe, GNU GPL 3.0'
5050
})

0 commit comments

Comments
 (0)