mirror of
https://github.com/aclist/dztui.git
synced 2026-08-25 17:32:36 +02:00
10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "$PWD"
|
|
url="https://github.com/ofek/pyapp/releases/latest/download/source.tar.gz"
|
|
output="${PWD}/pyapp-source.tar.gz"
|
|
curl "$url" -Lo "$output"
|
|
tar -xzf "$output"
|
|
mv ${PWD}/pyapp-v* ${PWD}/pyapp-latest
|
|
rm "$output"
|