Skip to content

Commit f5259f8

Browse files
committed
Add extension to group
1 parent 06ff128 commit f5259f8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

common.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fi
3232
# @param $1 - File extension to process (e.g. .dll, .so, .dylib, .exe)
3333
ProcessDepot ()
3434
{
35-
echo "::group::Processing binaries"
35+
echo "::group::Processing binaries ($1)"
3636

3737
# rm -r "Protobufs"
3838
mkdir -p "Protobufs"
@@ -46,7 +46,7 @@ ProcessDepot ()
4646
continue
4747
fi
4848

49-
echo " > $file"
49+
echo " $file"
5050

5151
# Extract protobuf definitions from the binary
5252
"$PROTOBUF_DUMPER_PATH" "$file" "Protobufs/" > /dev/null
@@ -93,7 +93,7 @@ ProcessVPK ()
9393
# Find all VPK directory files and dump their file listings to .txt
9494
while IFS= read -r -d '' file
9595
do
96-
echo " > $file"
96+
echo " $file"
9797

9898
# Write the VPK's file list to a .txt file with the same name
9999
"$VRF_PATH" --input "$file" --vpk_list > "$(echo "$file" | sed -e 's/\.vpk$/\.txt/g')"
@@ -169,7 +169,7 @@ ProcessToolAssetInfo ()
169169
# Find all tools asset info binaries and convert them to text
170170
while IFS= read -r -d '' file
171171
do
172-
echo " > $file"
172+
echo " $file"
173173

174174
# Dump asset info in short format, replacing .bin extension with .txt
175175
"$VRF_PATH" --input "$file" --output "$(echo "$file" | sed -e 's/\.bin$/\.txt/g')" --tools_asset_info_short || echo "S2V failed to dump tools asset info"

tools/FixEncoding/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func main() {
6363
return
6464
}
6565

66-
fmt.Printf(" > %s - %s\n", name, fileName)
66+
fmt.Printf(" %s - %s\n", name, fileName)
6767

6868
// Seek back to start and read the full file for conversion
6969
if _, err := f.Seek(0, io.SeekStart); err != nil {

0 commit comments

Comments
 (0)