Skip to content

Commit

Permalink
Update version to 8.0.1.17
Browse files Browse the repository at this point in the history
Fix Set-FeatureCommand
  • Loading branch information
Paul-Shvedun committed Jan 23, 2025
1 parent b1a963d commit dc4c2f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion clio/Command/FeatureCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ public override int Execute(FeatureOptions options){
Logger.WriteWarning("Use of UseFeatureWebService flag is not recommended");
return base.Execute(options);
}
SetFeatureStateDefValue(options);
if (options.SysAdminUnitName is null) {
SetFeatureStateDefValue(options);
} else {
SetFeatureStateForUser(options);
}
ClearCache(options.Code);
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion clio/clio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Authors>creatio rnd team</Authors>
<PackageTags>cli ATF clio creatio</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>8.0.1.16</AssemblyVersion>
<AssemblyVersion>8.0.1.17</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Version>$(AssemblyVersion)</Version>
<Description>CLI interface for Creatio</Description>
Expand Down

0 comments on commit dc4c2f4

Please sign in to comment.