mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
12 lines
231 B
Bash
Executable file
12 lines
231 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source ../../python/3.9.1/build.sh
|
|
|
|
mkdir -p build
|
|
|
|
git clone -q https://github.com/DennisMitchell/jellylanguage.git build/jelly
|
|
cd build/jelly
|
|
../../bin/python3.9 setup.py install --optimize=1
|
|
|
|
cd ../../
|
|
rm -rf build
|