mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
979ff1e689
* fixes mount of project in wrapper scripts, when not running in container * refactors makefile in preparation to extract common parts * refactors makefiles and scripts * fix git ignore matches * adds support to disable fetch * update * fixes docker warning about unused build argument * adds support to force offline build fixes shell escaping changes paths to relative where possible * moves make docker builder support files * removes unnecessary configuration elements * fixes initial download directory creation * adds missing rule for initial download directory creation * fixes docker error: unable to prepare context copies dockerfile to build context, in order to remove dependency to unsupported/new docker feature
19 lines
219 B
Bash
Executable File
19 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
running_in_background() {
|
|
pid="$1"
|
|
|
|
case "$("$PS" -o stat= -p "$pid" 2>/dev/null || echo '+')" in
|
|
*+*) ;;
|
|
*) return 0 ;;
|
|
esac
|
|
|
|
return 1
|
|
}
|
|
|
|
PS="${PS:-ps}"
|
|
|
|
running_in_background "$@"
|