1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

fix(webfuse): fix macros (#18)

* fixes return code on error

* fixes macro usage

* adds clean target

* fixes file mode

* fixes image name

* adds registry prefix to allow usage of custom registry (on-premise)

* changes syntax in travis file for package installation

* fixes duplicate settings discovery
This commit is contained in:
nosamad
2019-03-29 13:23:17 +01:00
committed by Falk Werner
parent 0ac03b6150
commit 1d413456a2
4 changed files with 48 additions and 41 deletions

View File

@@ -33,7 +33,7 @@ impl_container_id_by_cgroup() {
DOCKER="${DOCKER:-docker}"
if [ -z "${CONTAINER+x}" ] && [ -n "$DOCKER" ]; then
CONTAINER="$(container_id "$@")" || true
CONTAINER="$(container_id "$@")"
fi
echo "$CONTAINER"