Skip to content

Commit

Permalink
[build] fix chmod value for geenrated dotnet files
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jan 23, 2024
1 parent 7bec7b4 commit 7112e47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -784,9 +784,9 @@ namespace :dotnet do
FileUtils.rm_f('build/dist/*dotnet*')

FileUtils.copy('bazel-bin/dotnet/release.zip', "build/dist/selenium-dotnet-#{dotnet_version}.zip")
FileUtils.chmod(666, "build/dist/selenium-dotnet-#{dotnet_version}.zip")
FileUtils.chmod(0666, "build/dist/selenium-dotnet-#{dotnet_version}.zip")
FileUtils.copy('bazel-bin/dotnet/strongnamed.zip', "build/dist/selenium-dotnet-strongnamed-#{dotnet_version}.zip")
FileUtils.chmod(666, "build/dist/selenium-dotnet-strongnamed-#{dotnet_version}.zip")
FileUtils.chmod(0666, "build/dist/selenium-dotnet-strongnamed-#{dotnet_version}.zip")
end

desc 'Upload nupkg files to Nuget'
Expand Down

0 comments on commit 7112e47

Please sign in to comment.