Skip to content

Commit

Permalink
Update HelloWorld.iss
Browse files Browse the repository at this point in the history
  • Loading branch information
daren-thomas committed Jun 8, 2020
1 parent a3a293e commit b5eb080
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RevitPythonShell/Examples/HelloWorld.iss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ begin
begin
{ GET LOCATION OF USER AppData (Roaming) }
AddInFilePath := ExpandConstant('{userappdata}\Autodesk\Revit\Addins\2013\HelloWorld.addin');
AddInFilePath := ExpandConstant('{userappdata}\Autodesk\Revit\Addins\2020\HelloWorld.addin');
{ CREATE NEW ADDIN FILE }
AddInFileContents := '<?xml version="1.0" encoding="utf-8" standalone="no"?>' + #13#10;
Expand Down Expand Up @@ -54,7 +54,7 @@ var
begin
if CurUninstallStep = usPostUninstall then
begin
AddInFilePath := ExpandConstant('{userappdata}\Autodesk\Revit\Addins\2013\HelloWorld.addin');
AddInFilePath := ExpandConstant('{userappdata}\Autodesk\Revit\Addins\2020\HelloWorld.addin');
if FileExists(AddInFilePath) then
begin
Expand Down

0 comments on commit b5eb080

Please sign in to comment.