9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
URL="https://www.minecraft.net/content/dam/minecraft/edition-pi/minecraft-pi-0.1.1.tar.gz"
|
|
|
|
mkdir minecraft-pi
|
|
curl "${URL}" | tar -xz --strip-components 1 -C minecraft-pi
|