File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ $licenseContent = Get-Content (Join-Path $cloneDir "LICENSE")
52
52
$mitStartIndex = $licenseContent.IndexOf (" MIT License" )
53
53
$licenseHeader = ($licenseContent [$mitStartIndex .. ($licenseContent.Length - 1 )] | ForEach-Object { (" * " + $_ ).TrimEnd() }) -join " `n "
54
54
55
- $entryFilePath = Join-Path $cloneDir ( Join-Path $protoPrefix $entryFile )
55
+ $entryFilePath = Join-Path $cloneDir $protoPrefix $entryFile
56
56
if (-not (Test-Path $entryFilePath )) {
57
57
throw " Failed to find $entryFilePath in mutagen repo"
58
58
}
@@ -77,7 +77,7 @@ function Add-ImportedFiles([string] $path) {
77
77
78
78
# Mutagen generates from within the pkg directory, so we need to add
79
79
# the prefix.
80
- $filePath = Join-Path $cloneDir ( Join-Path $protoPrefix $importPath )
80
+ $filePath = Join-Path $cloneDir $protoPrefix $importPath
81
81
if (-not $filesToCopy.ContainsKey ($filePath )) {
82
82
Write-Host " Adding $filePath $importPath "
83
83
$filesToCopy [$filePath ] = $importPath
@@ -107,7 +107,7 @@ try {
107
107
Copy-Item - Force $filePath $dstPath
108
108
109
109
# Determine the license header.
110
- $fileHeader = " /** `n " +
110
+ $fileHeader = " /*`n " +
111
111
" * This file was taken from `n " +
112
112
" * https://github.com/mutagen-io/mutagen/tree/$mutagenTag /$protoPrefix /$protoPath `n " +
113
113
" *`n " +
You can’t perform that action at this time.
0 commit comments