Skip to content

Commit e551d02

Browse files
committed
Fix paths
1 parent 3701dc2 commit e551d02

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ccpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/upload-artifact@v2
2121
with:
2222
name: modbussim-linux
23-
path: release/src/bin/linux/ModbusSim*.AppImage
23+
path: release/bin/linux/ModbusSim*.AppImage
2424

2525
windows:
2626
runs-on: windows-2019
@@ -39,4 +39,4 @@ jobs:
3939
with:
4040
name: modbussim-windows
4141
path: |
42-
release\src\bin\win\ModbusSim.zip
42+
release\bin\win\ModbusSim.zip

scripts/deploy_linux.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
set -ex
33

44
# Copy assets
5-
cp misc/ModbusSim.desktop release/src/bin/linux/
6-
cp misc/icon-64x64.png release/src/bin/linux/ModbusSim.png
7-
cd release/src/bin/linux/
5+
cp misc/ModbusSim.desktop release/bin/linux/
6+
cp misc/icon-64x64.png release/bin/linux/ModbusSim.png
7+
cd release/bin/linux/
88

99
# now, build AppImage using linuxdeploy and linuxdeploy-plugin-qt
1010
# download linuxdeploy and its Qt plugin

scripts/deploy_windows.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ echo "Deploy ModbusScope ..."
44

55
g++ -v
66

7-
cd release\src\bin\win
7+
cd release\bin\win
88
IF ERRORLEVEL 1 GOTO errorHandling
99

1010
set DEPLOY_DIR=deploy

0 commit comments

Comments
 (0)