pmcf 2.17.0 → 2.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.17.0",
3
+ "version": "2.17.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -170,10 +170,10 @@ export class DNSService extends ExtraSourceService {
170
170
  async *preparePackages(dir) {
171
171
  const location = this.owner.owner;
172
172
  const name = location.name;
173
- const p1 = join(dir, "p1");
173
+ const p1 = join(dir, "p1") + "/";
174
174
  const packageData = {
175
175
  dir: p1,
176
- sources: [new FileContentProvider(p1 + "/")],
176
+ sources: [new FileContentProvider(p1)],
177
177
  outputs: this.outputs,
178
178
  properties: {
179
179
  name: `named-${name}`,
@@ -207,10 +207,10 @@ export class DNSService extends ExtraSourceService {
207
207
  yield packageData;
208
208
  }
209
209
 
210
- const p2 = join(dir, "p2");
210
+ const p2 = join(dir, "p2") + "/";
211
211
 
212
+ packageData.dir = p2;
212
213
  packageData.properties = {
213
- dir: p2,
214
214
  name: `named-zones-${name}`,
215
215
  description: `zone definitions for ${location.fullName}`,
216
216
  dependencies: ["mf-named"],
@@ -221,7 +221,7 @@ export class DNSService extends ExtraSourceService {
221
221
 
222
222
  packageData.sources = [
223
223
  new FileContentProvider(
224
- p2 + "/",
224
+ p2,
225
225
  {
226
226
  mode: 0o644,
227
227
  owner: "named",