6 lines
83 B
Bash
6 lines
83 B
Bash
#!/bin/sh -e
|
|
|
|
# Make apk interactive by default
|
|
touch /etc/apk/interactive
|
|
|
|
exit 0
|