From 7a500a6452a4002a9bb9fa06fd8213a27230eab1 Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Tue, 24 Oct 2017 08:48:04 +0200 Subject: [PATCH] Table-like for windows appveyor. --- resources/scripts/.appveyor-install-win.ps1 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/resources/scripts/.appveyor-install-win.ps1 b/resources/scripts/.appveyor-install-win.ps1 index d5d7b46d6..b1caf9436 100755 --- a/resources/scripts/.appveyor-install-win.ps1 +++ b/resources/scripts/.appveyor-install-win.ps1 @@ -8,7 +8,11 @@ $file = (Get-ChildItem '*.7z').Name echo "File to upload: $file" $url = curl.exe --upload-file "$file" "https://transfer.sh/$file" --silent echo "Obtained URL: $url" -echo " from powershell $url " >> C:\rssguard-wiki\Windows-development-builds.md + +$git_revision = git rev-parse --short HEAD +$date = Get-Date -format "MM-dd-yyyy HH:mm:ss" + +echo "| $date | [$git_revision](https://github.com/martinrotter/rssguard/commit/$git_revision) | [transfer.sh]($url) | " >> C:\rssguard-wiki\Windows-development-builds.md cd C:\rssguard-wiki git add *.* git commit -m "New files."