mirror of
https://github.com/SteamDeckHomebrew/decky-plugin-template.git
synced 2025-11-09 10:17:29 -06:00
8 lines
No EOL
144 B
Bash
Executable file
8 lines
No EOL
144 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -f /.dockerenv ]; then
|
|
apk add --no-cache python3 py3-pip
|
|
fi
|
|
pip3 install stickytape
|
|
stickytape src/py/main.py > main.py |