mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 09:30:44 +00:00
f6b4b2fe22
* This seems way more reliable and smaller than shipping a compiled .dll * For some reason I didn't find this method before (I only knew that you could ship the loose files which wasn't a good solution).
13 lines
164 B
Bash
13 lines
164 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 /path/to/IronPython/";
|
|
exit;
|
|
fi
|
|
|
|
IRONPYTHON="$1"
|
|
OUTDIR=$PWD
|
|
|
|
cd $IRONPYTHON/Lib
|
|
zip -r $OUTDIR/pythonlibs.zip *
|