| 191 | | |
|---|
| 192 | | // add the main fileset to the list of filesets to process. |
|---|
| 193 | | $mainFileSet = new TarFileSet($this->fileset); |
|---|
| 194 | | $mainFileSet->setDir($this->baseDir); |
|---|
| 195 | | $this->filesets[] = $mainFileSet; |
|---|
| | 191 | if (empty($this->filesets)) { // if there weren't any explicit filesets specivied, then |
|---|
| | 192 | // create a default, all-inclusive fileset using the specified basedir. |
|---|
| | 193 | $mainFileSet = new TarFileSet($this->fileset); |
|---|
| | 194 | $mainFileSet->setDir($this->baseDir); |
|---|
| | 195 | $this->filesets[] = $mainFileSet; |
|---|
| | 196 | } |
|---|