Skip to content

Commit

Permalink
fixed deployment scripts not installing builtin protocols
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyAnsley committed Jul 29, 2022
1 parent 5f0a3c3 commit 227fb04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions artifice/windows_build/build_windows.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pyinstaller piranhaGUI.spec
copy ..\resources .\dist\resources
xcopy /s /e ..\resources .\dist\resources
copy ..\config.yml .\dist
copy ..\builtin_protocols .\dist\builtin_protocols
xcopy /s /e ..\builtin_protocols .\dist\builtin_protocols

6 changes: 3 additions & 3 deletions artifice/windows_build/dist/ARTIFICE_installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

[Setup]
AppName=piranhaGUI
AppVersion=1.2.0
AppVersion=1.3.0
WizardStyle=modern
DefaultDirName={autopf}\piranhaGUI
DefaultGroupName=pirahnaGUI
UninstallDisplayIcon={app}\.exe
Compression=lzma2
SolidCompression=yes
OutputDir=.\installer
OutputBaseFilename=PiranhaGUIv1.2.0_installer_windows
OutputBaseFilename=PiranhaGUIv1.3.0_installer_windows

[Tasks]
Name: desktopicon; Description: "Create a &desktop icon";
Expand All @@ -24,7 +24,7 @@ Source: "resources\poseqco_logo_cropped.png"; DestDir: "{app}\resources"
Source: "resources\LiberationSans-Regular.ttf"; DestDir: "{app}\resources"
Source: "resources\translation_scheme.csv"; DestDir: "{app}\resources"
Source: "resources\piranha.png"; DestDir: "{app}\resources"
Source: "builtin_protocols\*"; DestDir: "{app}\builtin_protocols"
Source: "builtin_protocols\*"; DestDir: "{app}\builtin_protocols"; Flags: ignoreversion recursesubdirs
Source: "config.yml"; DestDir: "{app}"

[Icons]
Expand Down

0 comments on commit 227fb04

Please sign in to comment.