Skip to content

Commit

Permalink
realpath -e -> realpath
Browse files Browse the repository at this point in the history
  • Loading branch information
zrhoffman committed May 30, 2024
1 parent 174977e commit 17b71e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ while (( "$#" )); do
# where <service> is the name of the specific service to be chained. The file may be a symlink to another
# compose file, in which case the symlink will be followed before it is processed.
if [ -e "$COMPOSE_FILE.$1" ] ; then
$SELF -f $(realpath -e "$COMPOSE_FILE.$1") $([ "$verbose" == 0 ] || echo "-v") $([ "$quiet" == 0 ] || echo "-q") $([ "$debug" == 0 ] || echo "-d") $([ "$build" == 0 ] || echo "-b") $("${COMPOSECMD[@]}" -f $(realpath -e "$COMPOSE_FILE.$1") config --services)
$SELF -f $(realpath "$COMPOSE_FILE.$1") $([ "$verbose" == 0 ] || echo "-v") $([ "$quiet" == 0 ] || echo "-q") $([ "$debug" == 0 ] || echo "-d") $([ "$build" == 0 ] || echo "-b") $("${COMPOSECMD[@]}" -f $(realpath "$COMPOSE_FILE.$1") config --services)
chained_exit=$?
[ $chained_exit == 0 ] || exit $chained_exit
fi
Expand Down

0 comments on commit 17b71e3

Please sign in to comment.