mirror of
https://github.com/minetest/minetest.git
synced 2024-11-15 12:13:45 +01:00
7 lines
112 B
Bash
7 lines
112 B
Bash
|
#!/bin/bash -eu
|
||
|
cd $HOME
|
||
|
git clone --depth 1 https://github.com/LuaJIT/LuaJIT
|
||
|
pushd LuaJIT
|
||
|
make -j$(nproc)
|
||
|
popd
|