mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Create the various required directories if they don't exist.
This commit is contained in:
parent
e4475bb03f
commit
1f374a7c54
1 changed files with 10 additions and 0 deletions
|
|
@ -47,6 +47,16 @@ if ! ${work_dir}/scripts/build_x.sh ${work_dir}/tmp; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if ! mkdir -p ${plist_dir}; then
|
||||
echo "Could not create plist dir [${plist_dir}]!"
|
||||
echo
|
||||
usage
|
||||
fi
|
||||
if ! mkdir -p ${tarball_dir}; then
|
||||
echo "Could not create tarball dir [${tarball_dir}]!"
|
||||
echo
|
||||
usage
|
||||
fi
|
||||
# now package it up into tarballs
|
||||
if ! ${work_dir}/scripts/generate_tarballs.sh \
|
||||
${work_dir}/tmp/usr/X11R6 ${plist_dir} ${tarball_dir}; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue