mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
c38affcded
* All renderdoc code up to this point was written by me, history is available by request
6 lines
221 B
Bash
6 lines
221 B
Bash
#!/bin/bash
|
|
curl --user-agent "Microsoft-Symbol-Server" http://msdl.microsoft.com/download/symbols/$1/$2/${1%.*}.pd_ --output ${1%.*}.pd_
|
|
expand ${1%.*}.pd_ ${1%.*}.pdb
|
|
./makesym.sh ${1%.*}.pdb
|
|
rm ${1%.*}.pd_ ${1%.*}.pdb
|