Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Create the prefix or dependency directories if they don't exist.
Browse files Browse the repository at this point in the history
  • Loading branch information
MintoDA1 authored and MintoDA1 committed Aug 17, 2023
1 parent b4c0dd8 commit bf1c3b7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions buildscripts/_build_getopts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ MACOSX_DEPLOYMENT_TARGET=13
while getopts ":d:p:m:h" ARG; do
case "${ARG}" in
d)
DEPENDENCY_DIR=$(realpath ${OPTARG})
mkdir -p ${OPTARG}
DEPENDENCY_DIR=$(realpath "${OPTARG}")
;;
p)
PREFIX=$(realpath ${OPTARG})
mkdir -p ${OPTARG}
PREFIX=$(realpath "${OPTARG}")
;;
m)
MACOSX_DEPLOYMENT_TARGET="${OPTARG}"
Expand Down

0 comments on commit bf1c3b7

Please sign in to comment.