Opened 3 years ago
Closed 3 years ago
#351 closed PBI Packaging Bug (fixed)
stray bash-ism in warden installinmate.sh script
| Reported by: | embiidae | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | PBI System | Version: | 8.1 |
| Keywords: | Cc: | trac-bugs@… |
Description
if [ "${IFILE:0:1}" != "/" ]
then
IFILE="${PWD}/${IFILE}"
fi
Should be?:
chk=echo "${IFILE}" | cut -c 1-1
if [ "$chk" != "/" ]
then
IFILE="${PWD}/${IFILE}"
fi
Change History (1)
comment:1 Changed 3 years ago by kris
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Good catch, thanks! It'll be in the next version I roll of the Warden.
https://trac.pcbsd.org/changeset/8081