Revision: 46106
http://sourceforge.net/p/vice-emu/code/46106
Author: gpz
Date: 2026-05-12 17:32:03 +0000 (Tue, 12 May 2026)
Log Message:
-----------
better replace both occurances of the awk line :)
Modified Paths:
--------------
trunk/vice/doc/snapshots-extract.sh
Modified: trunk/vice/doc/snapshots-extract.sh
===================================================================
--- trunk/vice/doc/snapshots-extract.sh 2026-05-12 16:00:28 UTC (rev 46105)
+++ trunk/vice/doc/snapshots-extract.sh 2026-05-12 17:32:03 UTC (rev 46106)
@@ -299,7 +299,7 @@
FULL=`grep -i -A 50 "snapshot module.*format" $F`
# extract only the part until next closing comment
- TAB=`echo "$FULL" | awk '/*\// {exit} {print}'`
+ TAB=$(echo "$FULL" | awk '/\*\// {exit} {print}')
if [ -z "$__MODULE__" ]; then
# FIXME: what other formats are in the source?
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|