mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 14:56:14 +01:00
12 lines
134 B
Bash
Executable File
12 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPDIR=$(dirname $(readlink -f $0))
|
|
|
|
podman exec \
|
|
--interactive \
|
|
--tty \
|
|
obs-server \
|
|
/bin/bash
|
|
|
|
exit $?
|