mirror of
https://github.com/engineer-man/piston.git
synced 2025-07-11 08:18:45 +02:00
13 lines
No EOL
253 B
Bash
Executable file
13 lines
No EOL
253 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PREFIX=$(realpath $(dirname $0))
|
|
|
|
# Cloning lolcode source
|
|
git clone https://github.com/justinmeza/lci.git lolcode
|
|
cd lolcode
|
|
|
|
# Building and installing lolcode
|
|
./install.py --prefix="$PREFIX"
|
|
|
|
# Cleaning up
|
|
cd ../ && rm -rf lolcode |