Browse Source

scripts: fix vpc_parser errror

new-sdk
nillerusr 1 year ago
parent
commit
8b1be47f4d
  1. 3
      scripts/waifulib/vpc_parser.py
  2. 4
      wscript

3
scripts/waifulib/vpc_parser.py

@ -90,6 +90,9 @@ def fix_dos_path( path ): @@ -90,6 +90,9 @@ def fix_dos_path( path ):
if find_path == '': find_path = './'
else: find_path += '/'
if not os.path.exists(find_path):
return find_path+filename
dirlist = os.listdir(find_path)
for file in dirlist:
if file == filename:

4
wscript

@ -61,7 +61,7 @@ projects={ @@ -61,7 +61,7 @@ projects={
'serverbrowser',
'soundemittersystem',
'studiorender',
'thirdparty/StubSteamAPI',
'stub_steam',
'tier0',
'tier1',
'tier2',
@ -129,7 +129,7 @@ projects={ @@ -129,7 +129,7 @@ projects={
'vpklib',
'vstdlib',
'vtf',
'thirdparty/StubSteamAPI'
'stub_steam'
]
}

Loading…
Cancel
Save