Closed jbh closed 5 years ago
When trying to package APIs on IBM i, there is an issue with the glob() method. glob() on IBM i needs the full path and not a relative one. To fix this, I use realpath() and basename().
glob()
realpath()
basename()
Thanks, @jbh!
When trying to package APIs on IBM i, there is an issue with the
glob()
method.glob()
on IBM i needs the full path and not a relative one. To fix this, I userealpath()
andbasename()
.