diff options
author | TingPing <tingping@fedoraproject.org> | 2014-06-04 10:30:18 -0400 |
---|---|---|
committer | TingPing <tingping@fedoraproject.org> | 2014-06-04 10:30:18 -0400 |
commit | b8c02f71d9bbaf805534d5327d8c3935a3b87636 (patch) | |
tree | 723ae84fda43728303d4651a42f800f3ef1abd79 /version-template.ps1 | |
parent | 806b98dfc215f0c561ab51babe970abfa787169e (diff) |
win32: Use config.h instead of config-win32.h
Diffstat (limited to 'version-template.ps1')
-rw-r--r-- | version-template.ps1 | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/version-template.ps1 b/version-template.ps1 deleted file mode 100644 index 18eb90d9..00000000 --- a/version-template.ps1 +++ /dev/null @@ -1,12 +0,0 @@ -param ([string] $templateFilename, [string] $outputFilename) - -$versionParts = Select-String -Path "${env:SOLUTIONDIR}configure.ac" -Pattern '^AC_INIT\(\[HexChat\],\[([^]]+)\]\)$' | Select-Object -First 1 | %{ $_.Matches[0].Groups[1].Value.Split('.') } - -[string[]] $contents = Get-Content $templateFilename -Encoding UTF8 | %{ - while ($_ -match '^(.*?)<#=(.*?)#>(.*?)$') { - $_ = $Matches[1] + $(Invoke-Expression $Matches[2]) + $Matches[3] - } - $_ -} - -[System.IO.File]::WriteAllLines($outputFilename, $contents) |