Files
renderdoc/renderdocui/3rdparty/ironpython/compilelibs.sh
T
baldurk f6b4b2fe22 Change python embedding to get standard library from zip, not a dll
* 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).
2015-08-23 11:17:46 +02:00

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 *