about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/lib/install-wrapper.sh
blob: 91a7a2679f2095e31b72d6d9b55a673a1da23cb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
set -eu

args=()
declare -i path_args=0

while (( $# )); do
  if (( $# == 1 )); then
    if (( path_args > 1)) || [[ "$1" = */ ]]; then
      mkdir -p "$1"
    else
      mkdir -p "$(dirname "$1")"
    fi
  fi
  case $1 in
    -C) ;;
    -o | -g) shift ;;
    -s) ;;
    -m | -l)
      # handle next arg so not counted as path arg
      args+=("$1" "$2")
      shift
      ;;
    -*) args+=("$1") ;;
    *)
      path_args+=1
      args+=("$1")
      ;;
  esac
  shift
done