aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/packages
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2017-02-17 12:21:21 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2017-02-17 14:55:51 +0000
commita8d36956d53e4759d22cf201306138b63bbbcd35 (patch)
tree6d01c6e60ac1c8619bac328f7a47e540a7956f78 /scripts/packages
parent821ee9b59893929dc645fb8783c3bf2e4b3fbb2a (diff)
Export Bazel's LICENSE file using our normal repo sync process.
-- PiperOrigin-RevId: 147825291 MOS_MIGRATED_REVID=147825291
Diffstat (limited to 'scripts/packages')
-rw-r--r--scripts/packages/chocolatey/.gitignore2
-rw-r--r--scripts/packages/chocolatey/bazel.nuspec.template2
-rw-r--r--scripts/packages/chocolatey/build.ps110
3 files changed, 7 insertions, 7 deletions
diff --git a/scripts/packages/chocolatey/.gitignore b/scripts/packages/chocolatey/.gitignore
index d7b988a0ac..6bf4f7c838 100644
--- a/scripts/packages/chocolatey/.gitignore
+++ b/scripts/packages/chocolatey/.gitignore
@@ -2,5 +2,5 @@
*.zip
bazel.nuspec
tools/*.exe
-tools/LICENSE.txt
+tools/LICENSE
tools/params.json
diff --git a/scripts/packages/chocolatey/bazel.nuspec.template b/scripts/packages/chocolatey/bazel.nuspec.template
index 3d64d5fe32..9b673a5528 100644
--- a/scripts/packages/chocolatey/bazel.nuspec.template
+++ b/scripts/packages/chocolatey/bazel.nuspec.template
@@ -42,7 +42,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<iconUrl>https://cdn.rawgit.com/bazelbuild/bazel/master/site/images/bazel-logo.png</iconUrl>
<copyright>Copyright 2016 The Bazel Authors. All rights reserved.</copyright>
<!-- If there is a license Url available, it is is required for the community feed -->
- <licenseUrl>https://github.com/bazelbuild/bazel/tree/master/LICENSE.txt</licenseUrl>
+ <licenseUrl>https://github.com/bazelbuild/bazel/tree/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/bazelbuild/bazel.git</projectSourceUrl>
<docsUrl>https://www.bazel.build/versions/master/docs/getting-started.html</docsUrl>
diff --git a/scripts/packages/chocolatey/build.ps1 b/scripts/packages/chocolatey/build.ps1
index fc60fb675f..ae1d594163 100644
--- a/scripts/packages/chocolatey/build.ps1
+++ b/scripts/packages/chocolatey/build.ps1
@@ -31,7 +31,7 @@ if ($fixPackage -eq $true) {
}
rm -force -ErrorAction SilentlyContinue ./*.nupkg
rm -force -ErrorAction SilentlyContinue ./bazel.nuspec
-rm -force -ErrorAction SilentlyContinue ./tools/LICENSE.txt
+rm -force -ErrorAction SilentlyContinue ./tools/LICENSE
rm -force -ErrorAction SilentlyContinue ./tools/params.json
rm -force -ErrorAction SilentlyContinue ./tools/*.orig
if ($checksum -eq "") {
@@ -55,13 +55,13 @@ $nuspecTemplate = get-content "bazel.nuspec.template" | out-string
$nuspecExpanded = $ExecutionContext.InvokeCommand.ExpandString($nuspecTemplate)
add-content -value $nuspecExpanded -path bazel.nuspec
-write-host "Copying LICENSE.txt from repo-root to tools directory"
+write-host "Copying LICENSE from repo-root to tools directory"
$licenseHeader = @"
-From: https://github.com/bazelbuild/bazel/blob/master/LICENSE.txt
+From: https://github.com/bazelbuild/bazel/blob/master/LICENSE
"@
-add-content -value $licenseHeader -path "./tools/LICENSE.txt"
-add-content -value (get-content "../../../LICENSE.txt") -path "./tools/LICENSE.txt"
+add-content -value $licenseHeader -path "./tools/LICENSE"
+add-content -value (get-content "../../../LICENSE") -path "./tools/LICENSE"
$params = @{
package = @{