mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 13:36:32 +00:00
8 lines
112 B
Bash
Executable File
8 lines
112 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "$(uname)" = "Darwin" ]]; then
|
|
reattach-to-user-namespace "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|