diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2020-09-25 16:39:21 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2020-09-25 16:39:21 -0300 |
commit | 3a356aa01db8587f7598512ca30d8a8ec8f113d1 (patch) | |
tree | 23559154b92580f19fd883d13444fc8fe3e0721e /publishrelease | |
parent | 81bb55847a592dcbda2c25a4e984918c13543386 (diff) | |
download | luarocks-3a356aa01db8587f7598512ca30d8a8ec8f113d1.tar.gz luarocks-3a356aa01db8587f7598512ca30d8a8ec8f113d1.tar.bz2 luarocks-3a356aa01db8587f7598512ca30d8a8ec8f113d1.zip |
publishrelease: fix wiki links
Diffstat (limited to 'publishrelease')
-rwxr-xr-x | publishrelease | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/publishrelease b/publishrelease index 067f2f72..37145092 100755 --- a/publishrelease +++ b/publishrelease | |||
@@ -186,13 +186,14 @@ fi | |||
186 | 186 | ||
187 | sed -i "s,Latest release: .*,Latest release: '''LuaRocks $v''' - '$(date +'%d/%b/%Y')'," Download.mediawiki | 187 | sed -i "s,Latest release: .*,Latest release: '''LuaRocks $v''' - '$(date +'%d/%b/%Y')'," Download.mediawiki |
188 | 188 | ||
189 | sed -i "s,luarocks-[0-9.]*[0-9],luarocks-$v,g" Download.mediawiki | 189 | sed -i "s,/luarocks-[0-9.]*[0-9],/luarocks-$v,g" Download.mediawiki |
190 | 190 | ||
191 | gawk ' | 191 | gawk ' |
192 | BEGIN { | 192 | BEGIN { |
193 | print "'\'\'\''Version '$v\'\'\'' - '$(date +'%d/%b/%Y')' - [http://luarocks.org/releases/luarocks-'$v'.tar.gz All Unix] -" | 193 | print "'\'\'\''Version '$v\'\'\'' - '$(date +'%d/%b/%Y')' - [http://luarocks.org/releases/luarocks-'$v'.tar.gz Source tarball for Unix] -" |
194 | print "[http://luarocks.org/releases/luarocks-'$v'-windows-32.zip Windows all-in-one executable (32-bit)] -" | 194 | print "[http://luarocks.org/releases/luarocks-'$v'-windows-32.zip Windows binary (32-bit)] -" |
195 | print "[http://luarocks.org/releases/luarocks-'$v'-windows-64.zip Windows all-in-one executable (64-bit)] -" | 195 | print "[http://luarocks.org/releases/luarocks-'$v'-windows-64.zip Windows binary (64-bit)] -" |
196 | print "[http://luarocks.org/releases/luarocks-'$v'-linux-x86_64.zip Linux binary (x86_64)] -" | ||
196 | print "[http://luarocks.github.io/luarocks/releases other files]" | 197 | print "[http://luarocks.github.io/luarocks/releases other files]" |
197 | print "" | 198 | print "" |
198 | } | 199 | } |