Skip to content

Commit

Permalink
Updating .NET Buck release targets to add version to zip file name
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Sep 25, 2017
1 parent 5e4adb6 commit bb6267e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dotnet/BUCK
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include_defs('//dotnet/SELENIUM_DOTNET_VERSION')

export_file(
name = 'keyfile',
src = 'WebDriver.snk',
Expand All @@ -12,7 +14,7 @@ zip_file(
'//dotnet/src/webdriverbackedselenium:pack',
'//dotnet/src/support:pack'
],
out = 'selenium-dotnet.zip'
out = "selenium-dotnet-{}.zip".format(SE_VERSION)
)

zip_file(
Expand All @@ -22,5 +24,5 @@ zip_file(
'//dotnet/src/webdriverbackedselenium:pack_strongnamed',
'//dotnet/src/support:pack_strongnamed'
],
out = 'selenium-dotnet-strongnamed.zip'
out = "selenium-dotnet-strongnamed-{}.zip".format(SE_VERSION)
)

0 comments on commit bb6267e

Please sign in to comment.